I suggest to use Mozilla Firefox under Unix/Linux (and probably other systems) this way:
Create several Firefox profiles. For example I have the following profiles:
http://localhost site. No proxy, no ad blocking, an other set of bookmarks, etc.The problem is to run several Firefox instances simultaneously.
For example,
firefox -P default firefox -P local
does not work. The second instance of Firefox is not started and local profile is not loaded, only default profile.
The solution is to start Firefox this way:
firefox -a default -P default firefox -a local -P local
This way several distinct Firefox processes are started, tagged by ID given in the -a option argument. I suggest to give the -P and -a options the same argument. It can be accomplished with a simple shell function like this:
ff() {
(
profile="$1"
if [ -z "$profile" ]; then
firefox "$@"
else
shift
firefox -P "$profile" -a "$profile" "$@"
fi
)
} Then I can start firefox by such command as
ff default http://b2e.portonvictor.org
No Comments/Trackbacks/Pingbacks for this post yet...
Recently ||