LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Mozilla troubles (https://www.linuxquestions.org/questions/slackware-14/mozilla-troubles-220941/)

kak 08-22-2004 01:06 PM

Mozilla troubles
 
Ok, Mozilla will simply not start up as an user. If I open xterm and su to root then start Mozilla from the term it starts fine. What the hell am I doing wrong??? I am on Slackware 10 using Firestarter for my firewall. I can get out using Dillo as a user. Galeon also pops up an error message :
"Ensure the "MOZILLA_FIVE_HOME" environment variable is set to the correct Mozilla installation directory"

Can someone translate????:confused:

Cedrik 08-22-2004 01:19 PM

It must be permission problem as root can execute some files required by mozilla instead of your user.

Try to find mozilla files that have too strict permissions like root:root 0600 (r-w------)or 0700 (rxw------), they should be 0644 or 0755

These commands may help to find those files :

find /usr/lib/mozilla* -perm 0700
find /usr/lib/mozilla* -perm 0600

And to reset them properly :

find /usr/lib/mozilla* -perm 0700 -exec chmod 0755 "{}" \;
find /usr/lib/mozilla* -perm 0600 -exec chmod 0644 "{}" \;

kak 08-22-2004 09:55 PM

All fixed
 
Thanks alot. Problem solved. :D

Also all those out there answering questions Thank you. With out this mass of information, I never could have got Slack running.

NumbSkullMD 08-23-2004 08:57 AM

Sweet! Thanks for the answer! I had this problem too :) .

:confused:


All times are GMT -5. The time now is 03:36 AM.