Code: Select all
which: no midori in (/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/java/bin)
Code: Select all
which: no midori in (/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/java/bin)
I have reactivated this subject, as I just tried deleting this file on a Dell Latitude D505, and I completely lost my graphical display. I have the same system installed.gapan wrote:Delete file /etc/profile.d/lxde.sh
Code: Select all
#!/bin/sh
if [ -x `which midori` ]; then
export BROWSER=midori
fi
Code: Select all
#chmod +x /etc/profile.d/lxde.sh
It seems to work fine with "firefox". It also seems to work fine with just the first line included in the script.mimosa wrote:You could try changing "midori" to "firefox"
Code: Select all
root[vanilla]# which midori
which: no midori in (/usr/local/sbin:/usr/local/bin:/sbin:/usr/sbin:/bin:/usr/bin)
root[vanilla]# touch /usr/bin/midori
root[vanilla]# which midori
which: no midori in (/usr/local/sbin:/usr/local/bin:/sbin:/usr/sbin:/bin:/usr/bin)
root[vanilla]# chmod +x /usr/bin/midori
root[vanilla]# which midori
/usr/bin/midori
root[vanilla]#