Last active
August 29, 2015 14:14
-
-
Save fanf/599d5cc706d5aff69bdb to your computer and use it in GitHub Desktop.
Install multiple version of Firefox, each with it's own local profil
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Start firefox with an other Profile: | |
----------------------------------- | |
That will still change things on you user directory (~/.mozilla/firefox/ProfileName) | |
% ./firefox --no-remote -P ProfileName | |
Start firefox bypassing the profil manager: | |
------------------------------------------- | |
% ./firefox --no-remote -profile path_to_directory | |
path_to_directory may be empty, it will be populated as neeeded. | |
More information: http://kb.mozillazine.org/Bypassing_the_Profile_Manager | |
Downloading old versions of Firefox: | |
------------------------------------ | |
Because firefox web site make it really hard to find it: | |
https://ftp.mozilla.org/pub/mozilla.org/firefox/releases | |
Full example for local Firefox 31.4esr: | |
--------------------------------------- | |
% wget https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/31.4.0esr/linux-x86_64/en-GB/firefox-31.4.0esr.tar.bz2 | |
% tar xjf firefox-31.4.0esr.tar.bz2 | |
% cd firefox | |
% mkdir local-profil | |
% ./firefox --no-remote -profile local-profil | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment