Erica from Canada asks:
“… I’m using Ubuntu 9.04… the “Check for Updates” in Firefox is grayed out and apt-get does not upgrade Firefox… I’m stuck at 3.0.18, how can I get upgraded?…”
This is an issue, I’ve encountered before. The newest versions of Firefox are not yet in the repositories, and the “Check for Updates” is disabled on purpose. I tried upgrading Firefox via PPA’s on a couple occasions, butthe updates failed and I ended up with broken packages! In my opinion, the following steps might serve as a safer way to upgrade.
In your existing Firefox version (3.0.18), install the following extension manager, named FEBE, in case something happens to your extentions, you’ll be able to reinstall them:
FEBE: https://addons.mozilla.org/en-US/firefox/addon/2109
Use FEBE to backup your extensions.
Also, just in case something happens to your saved passwords, you can back those up as well with an extension named “Password Exporter”: https://addons.mozilla.org/en-US/firefox/addon/2848
Backup up your passwords.
Finally, don’t forget to backup your bookmarks in case something goes wrong.
In a Terminal, run the command:
which firefox
You should see this answer displayed:
/usr/bin/firefox
This guide is based on the pathing above. If the steps below are not followed properly, then this will not work! ALWAYS make sure you have BACKUPS of data you do not want to lose, in case something in your system goes terribly wrong.
Now, let’s use the Terminal to move into Ubuntu’s temporary (working) directory:
cd /tmp
Download Firefox 3.6 for Ubuntu 9.04 (Jaunty):
wget “http://download.mozilla.org/?product=firefox-3.6&os=linux&lang=en-US”
(The above is for the North American version, you can change that to meet your needs).
Extract the contents:
tar xvjf firefox-*.bz2
We are going to copy the new version of Firefox to a directory called “firefox-3.6″ (instead of “firefox”), this way we can revert back to the original Firefox 3.0.18 is needed.
Continue reading →