How to install mozilla's browsers with your locale

How to do things, solutions, recipes, tutorials
Post Reply
Message
Author
watchdog
Posts: 2021
Joined: Fri 28 Sep 2012, 18:04
Location: Italy

How to install mozilla's browsers with your locale

#1 Post by watchdog »

Say you want to install the latest firefox in a recent puppy. Older puppies may need other libraries for the latest mozilla's browsers. Go to:

http://releases.mozilla.org/pub/mozilla ... /releases/

or

ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/

and surf to the desired firefox version with your locale and download the compressed tar.bz2. Click on the archive and extract all to /usr/local. Go to /usr/bin and delete or rename adding the suffix .old any link you have to other versions of firefox. Then in console:

Code: Select all

ln -s /usr/local/firefox/firefox /usr/bin/firefox
Open with geany /usr/local/bin/defaultbrowser and change it to:

Code: Select all

#!/bin/bash
LD_LIBRARY_PATH=/usr/local/firefox:$LD_LIBRARY_PATH
exec firefox "$@"
After saving right-click on /usr/local/bin/defaultbrowser and click Properties: don't give write permissions to the changed defaultbrowser.

Right-click now on a html file (your saved bookmarks for example) and click on Set-Run-Action. Choose:

Code: Select all

defaultbrowser "$@"
for all html files.

The same procedure for seamonkey. You can use:

http://releases.mozilla.org/pub/mozilla ... /releases/

or

ftp://ftp.mozilla.org/pub/mozilla.org/s ... /releases/

and change firefox with seamonkey in above instructions.

Clicking now on Browse button on your desktop open the desired browser.

Post Reply