This page describes how to run Mozilla builds of Firefox in Ubuntu. This can be useful if you want to check whether a bug exists in upstream versions of Firefox.
Instructions
Running Mozilla builds of Firefox is not recommended. |
Installation
The following instructions will install Firefox in your home directory, and will use a different profile for Mozilla and Ubuntu builds of Firefox.
Go to the Firefox download page
- Download Firefox for Linux
Extract the file you downloaded into ~/firefox (e.g. by doing tar jxf firefox*.tar.bz2 -C $HOME)
Make a backup of your ~/.mozilla directory (e.g. by doing tar zcPf ~/mozilla-backup-$(date +%s).tar.gz ~/.mozilla)
Next, if this is the first time you have installed a Mozilla build, do the following:
Run ~/firefox/firefox -ProfileManager to start the Firefox profile manager
Create a new profile called mozilla-build
Make sure that the default profile is still selected
Click exit to close the profile manager (do not start Firefox)
- Run the following shell script:
mkdir ~/bin cat > ~/bin/firefox <<END #!/bin/bash exec "\$HOME/firefox/firefox" -P mozilla-build "\$@" END chmod 755 ~/bin/firefox
The firefox command in your ~/bin directory will now run Firefox with the mozilla-build profile.
Uninstallation
Delete the ~/firefox directory and the ~/bin/firefox file
Run firefox -ProfileManager and delete mozilla-build
This completely uninstalls the Mozilla build of Firefox. If you install a Mozilla build in future, you will need to perform all of the instructions above, including the first time instructions.
Restore your old profile
To restore the backup of your profile, do the following:
- Close any open Firefox windows
Rename ~/.mozilla (e.g. mv ~/.mozilla ~/.mozilla-broken)
Extract your archive (e.g. by doing tar zxPf ~/mozilla-backup-DATE.tar.gz
This will completely reset your Firefox profile to the point when you made the backup.
Rationale
There are many ways to run Mozilla builds alongside Ubuntu builds, depending on your needs. This section will discuss some of the choices made in the above instructions.
The guide recommends that you back your Mozilla profile up. Regular backups are always recommended, especially before a major software upgrade. Special precaution is necessary here because new versions of Firefox can make backwards-incompatible changes to profiles. For example, you should avoid using Firefox 3 on a profile that's been used with Firefox 3.51.
The guide recommends extracting Firefox into your home directory. This is because extracting to another location (such as /usr/local) would require super-user permissions, without any benefit in the single-user case. If you want to provide new versions of Firefox on a multiple-user system, you are urged to use the recommended procedure. Installing non-Ubuntu software on a multi-user system massively increases your administrative burden - for example, you put your users at risk unless you manually update programs every time there's an update.
The guide recommends that you create a mozilla-build profile for the downloaded version of Firefox. This is partially because of the above-mentioned compatibility issues, and partially because debugging Firefox is much easier with a fresh profile.
UbuntuZilla
An alternative way of installing a Mozilla build is to use UbuntuZilla.
UbuntuZilla automates the installation process for Mozilla builds of Firefox, SeaMonkey, and Thunderbird on Ubuntu. Unlike the above instructions, UbuntuZilla is designed for ordinary users that want to use a Mozilla build as their default browser.
See the UbuntuZilla website for features and usage instructions.
http://irclogs.ubuntu.com/2009/07/08/%23ubuntu-mozillateam.html (search for profile damage) (1)