can any one tell me the path of mozilla directory please ? The binary path or the path for configuration files and local settings?
Your local settings are in /home/dsl/.mozilla/firefox.
You can find whichever binary you want by using the which command:
Code Sample
which firefox
It will give you a full path. To check to see if this is the path to the actual binary, you can do ls -l to the output from the previous command:
Code Sample
ls -l /usr/local/bin/firefox
That will either show the same file with its details or, if it's a symlink, will point to what it's linking. In this case, it links to /usr/local/firefox/firefox.thanks
original here.