0

I have the source code in tar.bz2 but when I tried these instructions on http://www.cyberciti.biz/faq/install-firefox-4-0-tar-bz2-in-linux/ it's just opening Firefox 4 (this instruction is to install firefox 4 but I changed 4 to 3.6.16).

Thanks.

Oxwivi
  • 17,849
Jwtiyar
  • 27

1 Answers1

1

You probably meant 3.6.x, 3.6.17 is the latest version in the 3.6 branch.

  1. Firefox 3.6.x can be downloaded from http://www.mozilla.com/firefox/all-older.html
  2. Extract the compressed tarball by executing:

    tar xjf firefox-3.6.17.tar.bz2 -C ~
    

    The directory ~/firefox will be created. Note that the Cyberciti guide extracts it to /opt, which requires root permissions but breaks the Firefox updater.

  3. To run firefox now, issue:

    ~/firefox/firefox
    

Only your account will be able to run Firefox 3.6.17 (since it's now installed in your Home directory). And if you haven't removed Firefox 4, then the latest latest version will be in the system and available to all users, including you.

Oxwivi
  • 17,849
Lekensteyn
  • 174,277