Talk:Run multiple instances in Linux

From MozillaZine Knowledge Base
Jump to navigationJump to search

1. Is there a way to do this with one instance running locally and the other running on a remote display?

kulrak@bifrost:~> env |grep DISPLAY DISPLAY=:0.0 kulrak@bifrost:~> firefox -remote 'openURL(http://www.google.com, new-window)' --display 10.0.0.69:0.0

This opens it on the local display, ignoring the command line switch.

kulrak@bifrost:~> export DISPLAY=10.0.0.69:0.0 kulrak@bifrost:~> firefox -remote 'openURL(http://www.google.com, new-window)' Error: No running window found kulrak@bifrost:~> firefox -a firefox -remote "OpenURL('http://www.google.com/',new-window)" Error: No running window found

Is there any way around this?

2. This seems overly complicated. Just run firefox -no-remote -ProfileManager to start a second instance and specify a different profile? - Skierpage 01:00, 12 November 2010 (UTC)