you REALLY???????? want to put it here ???????
-- odd location but -- it is YOUR computer
there is normally NO /src folder but ....... ( a /usr/src -- but no /src)
Code:
/src/Seamonkey/seamonkey
the instructions have you put the seamonkey folder in /opt or in /usr/opt
just typing "seamonkey" will do NOTHING if that folder is NOT in the system $PATH and in the library $LD_LIBRARY_PATH
this is why you use ./seamonkey in the folder that has it
did you read ( and understand) the error ?
Code:
bash: ./seamonkey: Permission denied
what is the permissions of the file ?????
is it executable ?
are you a member of the "group"
are you thew "owner"
there is a nice shell script called "run-mozilla.sh "
normally this dose not need to be used
but you might need to make the "seamonkey" binary file executable
to check
Code:
cd /to/the/install/location
ls -l seamonkey
now YOU as a NORMAL user DO NOT !!! have permission to edit or use files in that odd location "/src"
your NORMAL!!!! user dose need to be able to read AND WRITE !!! to this folder
so for the very odd location of /src
you need to do this AS ROOT!!!!!
Code:
su -
cd /src
chown -R YOUR_USER_NAME:users seamonkey
cd seamonkey
chmod +x seamonkey
replace "YOUR_USER_NAME" with well your normal user name
NOW you will be able to start it from ONLY!!! the terminal
and ONLY after you cd into the seamonkey folder
so open a terminal
Code:
cd /src/seamonkey
./seamonkey
you WILL need to do that EVERY TIME you want to run it from there
unless you edit the system settings and make a launcher
now plugins
this being a very ODD location you will likely need to manually make a "plugins" folder and link all the plugins in the system folder to that NEW one in the new seamonkey folder
Code:
su -
ln -s /usr/lib64/browser-plugins /src/seamonkey/plugins
it might be
/use/lib64/mozilla/plugins or some other name