Helpful Hints – Running multiple instances of Firefox
Ever wanted to run more than one instance of Firefox? At the same time? It’s quite simple, really!
The advantages of doing this are apparent to those who might be in a multi-user environment using only one account on the PC. Also for web developers who may have a separate Firefox profile for development, and another one for regular browsing, this is a useful ability.
The way to do it is to set up a Firefox shortcut with the link target being:
"C:\Program Files\Mozilla Firefox\firefox.exe" -p -no-remote
You would, of course, want to modify the path to the Firefox executable depending on where you’ve installed it.
In Ubuntu, your application launcher should reference the following:
/usr/bin/firefox -p -no-remote
The keen observer will note that we’re actually providing two different command-line switches to Firefox. The “-no-remote” tells Firefox to launch in a new process, and the “-p” switch tells Firefox to bring up the Profile Manager. Without the profile manager switch, Firefox will simply try to load your default or last used profile, provided you haven’t setup Firefox to bring up the Profile Manager every time you start it.
It was very helpful, that’s what I’ve been missing. Thanks a lot
piotrekk
December 31, 2008 at 6:01 pm
[...] Created a default shortcut to launch multiple instances of Firefox. [...]
Redefine 2009: February Focus in Review | drew tarvin blog
March 1, 2009 at 10:36 pm
Cool! I’ve been looking into multi-browser compatibility for my websites.
This, the old Firefox version page on http://www.oldapps.com and My DebugBar IETester should go a long way towards helping…
Now I’ve just got to look into tackling Safari and Opera…
Tim
March 19, 2009 at 6:00 am
Tim, Use http://browsershots.org/ . It has been a lifesaver on my dev work
!
James
September 2, 2009 at 5:39 pm