<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Multiple Firefox Instances</title>
	<atom:link href="http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.callum-macdonald.com</link>
	<description>Callum on life</description>
	<lastBuildDate>Tue, 07 Feb 2012 21:09:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Saevar Einarsson</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-106783</link>
		<dc:creator>Saevar Einarsson</dc:creator>
		<pubDate>Mon, 06 Feb 2012 18:58:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-106783</guid>
		<description>On Windows x64 the command is
&quot;C:\Program Files (x86)\Mozilla Firefox\firefox.exe&quot; -no-remote -ProfileManager</description>
		<content:encoded><![CDATA[<p>On Windows x64 the command is<br />
&#8220;C:\Program Files (x86)\Mozilla Firefox\firefox.exe&#8221; -no-remote -ProfileManager</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dano</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-105518</link>
		<dc:creator>dano</dc:creator>
		<pubDate>Thu, 26 Jan 2012 20:21:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-105518</guid>
		<description>I figured out to control how Ubuntu launches URLs.  In Preferences-&gt;Main Menu-&gt;Internet the &quot;Firefox Web Browser&quot; that was put there by the system determines how Ubuntu launches URLs.  I changed it to xterm and clicking a link opens an xterm.  You can rename and move that item, and it still performs the same function.

So you do not want to change the command for that one.  What I did was change the name of that one to &quot;Firefox (preferred application)&quot;, changed the icon, and moved it further down the list.  I added a new entry called &quot;Firefox&quot; and set the command to &quot;start_firefox -P default %u&quot;.

Now everything is working like it used to work.</description>
		<content:encoded><![CDATA[<p>I figured out to control how Ubuntu launches URLs.  In Preferences-&gt;Main Menu-&gt;Internet the &#8220;Firefox Web Browser&#8221; that was put there by the system determines how Ubuntu launches URLs.  I changed it to xterm and clicking a link opens an xterm.  You can rename and move that item, and it still performs the same function.</p>
<p>So you do not want to change the command for that one.  What I did was change the name of that one to &#8220;Firefox (preferred application)&#8221;, changed the icon, and moved it further down the list.  I added a new entry called &#8220;Firefox&#8221; and set the command to &#8220;start_firefox -P default %u&#8221;.</p>
<p>Now everything is working like it used to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-105020</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Sat, 21 Jan 2012 15:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-105020</guid>
		<description>Interesting. I&#039;ve done some experimenting. Calling &lt;code&gt;`firefox http://url/`&lt;/code&gt; will always open a new tab with the link. However, when the first firefox instance is started with --no-remote, clicking a link appears to launch &lt;code&gt;`firefox --no-remote http://url/`&lt;/code&gt; which will not work. The --no-remote flag cannot be used with a url if firefox is already running. I&#039;d guess this bug lies somewhere with Ubuntu&#039;s method of sending urls, but that&#039;s something I know nothing about. Maybe there&#039;s a way to modify that.

Thanks for posting your script. I&#039;ll start firefox without --no-remote for the first profile by hand, I always start it from the run prompt anyway. Good to know there is a solution, thank you kindly.</description>
		<content:encoded><![CDATA[<p>Interesting. I&#8217;ve done some experimenting. Calling <code>`firefox <a href="http://url/" rel="nofollow">http://url/</a>`</code> will always open a new tab with the link. However, when the first firefox instance is started with &#8211;no-remote, clicking a link appears to launch <code>`firefox --no-remote <a href="http://url/" rel="nofollow">http://url/</a>`</code> which will not work. The &#8211;no-remote flag cannot be used with a url if firefox is already running. I&#8217;d guess this bug lies somewhere with Ubuntu&#8217;s method of sending urls, but that&#8217;s something I know nothing about. Maybe there&#8217;s a way to modify that.</p>
<p>Thanks for posting your script. I&#8217;ll start firefox without &#8211;no-remote for the first profile by hand, I always start it from the run prompt anyway. Good to know there is a solution, thank you kindly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dano</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-104831</link>
		<dc:creator>dano</dc:creator>
		<pubDate>Thu, 19 Jan 2012 16:35:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-104831</guid>
		<description>I wrote a little script to work around the problem.  Save the script somewhere in your PATH as start_firefox.  Then change your menus to call start_firefox instead of firefox and remove the -no-remote.

For example: start_firefox -P work %u

Here is the script:

#!/bin/sh

running=`pgrep -x firefox`
if [ -n &quot;$running&quot; ]; then
    firefox -no-remote $@ &amp;
else
    firefox $@ &amp;
fi</description>
		<content:encoded><![CDATA[<p>I wrote a little script to work around the problem.  Save the script somewhere in your PATH as start_firefox.  Then change your menus to call start_firefox instead of firefox and remove the -no-remote.</p>
<p>For example: start_firefox -P work %u</p>
<p>Here is the script:</p>
<p>#!/bin/sh</p>
<p>running=`pgrep -x firefox`<br />
if [ -n "$running" ]; then<br />
    firefox -no-remote $@ &amp;<br />
else<br />
    firefox $@ &amp;<br />
fi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dano</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-103904</link>
		<dc:creator>dano</dc:creator>
		<pubDate>Wed, 11 Jan 2012 23:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-103904</guid>
		<description>The biggest problem for me with unity is the switch to application focus instead of task focus.  For my job, I have 10 workspaces and I usually have 30 or more terminals open, 1-4 per task I am working on.  With Unity (and gnome 3) all the terminals are combined into one and I cannot keep track of what I am doing.

The error does happen with only one firefox open.</description>
		<content:encoded><![CDATA[<p>The biggest problem for me with unity is the switch to application focus instead of task focus.  For my job, I have 10 workspaces and I usually have 30 or more terminals open, 1-4 per task I am working on.  With Unity (and gnome 3) all the terminals are combined into one and I cannot keep track of what I am doing.</p>
<p>The error does happen with only one firefox open.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-103902</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Wed, 11 Jan 2012 22:46:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-103902</guid>
		<description>Likewise, I&#039;m really not a fan of Unity. I like the ideas, but in 12.04 alpha, much of it is still pretty ropey. The run dialog, for example, don&#039;t even get me started! I didn&#039;t notice this behaviour before upgrading, and I&#039;m pretty sure I was running FF 8 or higher. It could be tested in a VM running an older Ubuntu / Firefox, see if it arises at a certain point. Does the same behaviour occur if only one instance is running?</description>
		<content:encoded><![CDATA[<p>Likewise, I&#8217;m really not a fan of Unity. I like the ideas, but in 12.04 alpha, much of it is still pretty ropey. The run dialog, for example, don&#8217;t even get me started! I didn&#8217;t notice this behaviour before upgrading, and I&#8217;m pretty sure I was running FF 8 or higher. It could be tested in a VM running an older Ubuntu / Firefox, see if it arises at a certain point. Does the same behaviour occur if only one instance is running?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dano</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-103900</link>
		<dc:creator>dano</dc:creator>
		<pubDate>Wed, 11 Jan 2012 22:41:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-103900</guid>
		<description>I&#039;m still running Ubuntu 11.04 (I HATE Unity), and my Firefox is version 8.0.  I&#039;m guessing the update to 8.0 is when the problem showed up.</description>
		<content:encoded><![CDATA[<p>I&#8217;m still running Ubuntu 11.04 (I HATE Unity), and my Firefox is version 8.0.  I&#8217;m guessing the update to 8.0 is when the problem showed up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-103896</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Wed, 11 Jan 2012 22:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-103896</guid>
		<description>I have noticed the very same thing in the last couple of days since I upgraded to Precise (12.04). I wonder if it&#039;s a bug in the new version of Firefox, I&#039;m now on 10.0 since upgrading. If you find a solution, please do post it here or let me know. I&#039;ll do likewise. No doubt at some point (once I iron out the other bugs!) I&#039;ll get round to look into into it. :-)</description>
		<content:encoded><![CDATA[<p>I have noticed the very same thing in the last couple of days since I upgraded to Precise (12.04). I wonder if it&#8217;s a bug in the new version of Firefox, I&#8217;m now on 10.0 since upgrading. If you find a solution, please do post it here or let me know. I&#8217;ll do likewise. No doubt at some point (once I iron out the other bugs!) I&#8217;ll get round to look into into it. <img src='http://www.callum-macdonald.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dano</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-103895</link>
		<dc:creator>dano</dc:creator>
		<pubDate>Wed, 11 Jan 2012 22:31:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-103895</guid>
		<description>I&#039;ve been using this for years on Ubuntu.  Until recently, clicking a link in Evolution or using &quot;Open Link&quot; from a right click on an URL opened the page in the first Firefox that I opened.   Recently, in the past month or so, I get the &quot;Firefox is already running, but not responding&quot; error.  My setup is unchanged, but Firefox has been updated.  

Anyone else see this?  Anyone found a workaround?

Thanks!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using this for years on Ubuntu.  Until recently, clicking a link in Evolution or using &#8220;Open Link&#8221; from a right click on an URL opened the page in the first Firefox that I opened.   Recently, in the past month or so, I get the &#8220;Firefox is already running, but not responding&#8221; error.  My setup is unchanged, but Firefox has been updated.  </p>
<p>Anyone else see this?  Anyone found a workaround?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Usman</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-103531</link>
		<dc:creator>Usman</dc:creator>
		<pubDate>Sun, 08 Jan 2012 17:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-103531</guid>
		<description>Yeah It is possible. Actually this was mentioned in the link which you provided. So I would like you to thank you again. :) 
http://kb.mozillazine.org/Command_line_arguments

&quot;If you regularly wish to start your application using command line arguments then you can also create a shortcut on your Desktop which includes them. To do this, right-click on an open space of the desktop and choose &quot;New -&gt; Shortcut&quot;. Follow the wizard to create the new shortcut. When it prompts you for location (not name), type the file path and file name followed by the command line arguments, exactly as in the example above. &quot;</description>
		<content:encoded><![CDATA[<p>Yeah It is possible. Actually this was mentioned in the link which you provided. So I would like you to thank you again. <img src='http://www.callum-macdonald.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://kb.mozillazine.org/Command_line_arguments" rel="nofollow">http://kb.mozillazine.org/Command_line_arguments</a></p>
<p>&#8220;If you regularly wish to start your application using command line arguments then you can also create a shortcut on your Desktop which includes them. To do this, right-click on an open space of the desktop and choose &#8220;New -&gt; Shortcut&#8221;. Follow the wizard to create the new shortcut. When it prompts you for location (not name), type the file path and file name followed by the command line arguments, exactly as in the example above. &#8220;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-103526</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Sun, 08 Jan 2012 16:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-103526</guid>
		<description>I&#039;m not a windows user, so I&#039;m not sure how you&#039;d create the shortcut, but I&#039;m sure it&#039;s possible. Glad the writeup was useful. :-)</description>
		<content:encoded><![CDATA[<p>I&#8217;m not a windows user, so I&#8217;m not sure how you&#8217;d create the shortcut, but I&#8217;m sure it&#8217;s possible. Glad the writeup was useful. <img src='http://www.callum-macdonald.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Usman</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-103525</link>
		<dc:creator>Usman</dc:creator>
		<pubDate>Sun, 08 Jan 2012 16:53:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-103525</guid>
		<description>Thank you for the amazing tutorial. I really needed this.

Is this possible to add the shortcut to the desktop instead of doing this every time?
On Windows click Start &gt; Run then:
&quot;C:\Program Files\Mozilla Firefox\firefox.exe&quot; -no-remote -P &quot;secondprofilename&quot;</description>
		<content:encoded><![CDATA[<p>Thank you for the amazing tutorial. I really needed this.</p>
<p>Is this possible to add the shortcut to the desktop instead of doing this every time?<br />
On Windows click Start &gt; Run then:<br />
&#8220;C:\Program Files\Mozilla Firefox\firefox.exe&#8221; -no-remote -P &#8220;secondprofilename&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maki</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-101243</link>
		<dc:creator>Maki</dc:creator>
		<pubDate>Mon, 19 Dec 2011 11:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-101243</guid>
		<description>Awesome tutorial! It&#039;s amazing what (undocumented) commandline options exist to make life for people like us a teensy tiny bit easier. :p

Thanks to you, I now run a proxied and unproxied FF instance on my main PC without a problem, where earlier I had to look at alternatives to FF to do so. (F*** Chrome, Opera or IE... they really really don&#039;t work for me.)

You&#039;re a lifesaver. ^-^</description>
		<content:encoded><![CDATA[<p>Awesome tutorial! It&#8217;s amazing what (undocumented) commandline options exist to make life for people like us a teensy tiny bit easier. :p</p>
<p>Thanks to you, I now run a proxied and unproxied FF instance on my main PC without a problem, where earlier I had to look at alternatives to FF to do so. (F*** Chrome, Opera or IE&#8230; they really really don&#8217;t work for me.)</p>
<p>You&#8217;re a lifesaver. ^-^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-96292</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Wed, 30 Nov 2011 23:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-96292</guid>
		<description>No. Each instance needs a separate profile because you can&#039;t have two sets of session cookies, etc in the same profile.</description>
		<content:encoded><![CDATA[<p>No. Each instance needs a separate profile because you can&#8217;t have two sets of session cookies, etc in the same profile.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raju</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-96289</link>
		<dc:creator>Raju</dc:creator>
		<pubDate>Wed, 30 Nov 2011 22:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-96289</guid>
		<description>Can you create two instances of Firefox without creating two profiles? Currently if i open a website with two instances of Firefox, the contents generally merge. however if i create two profiles then it works fine.</description>
		<content:encoded><![CDATA[<p>Can you create two instances of Firefox without creating two profiles? Currently if i open a website with two instances of Firefox, the contents generally merge. however if i create two profiles then it works fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MattK</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-88999</link>
		<dc:creator>MattK</dc:creator>
		<pubDate>Mon, 07 Nov 2011 21:46:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-88999</guid>
		<description>Strangely the new profiles cannot access https sites.  Other sites work fine but https fails for some reason.</description>
		<content:encoded><![CDATA[<p>Strangely the new profiles cannot access https sites.  Other sites work fine but https fails for some reason.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gilles</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-86477</link>
		<dc:creator>Gilles</dc:creator>
		<pubDate>Thu, 20 Oct 2011 11:30:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-86477</guid>
		<description>Thx alot, been searching for that info, methods old tutos don&#039;t work in 7.1.
This seems to work for now :)</description>
		<content:encoded><![CDATA[<p>Thx alot, been searching for that info, methods old tutos don&#8217;t work in 7.1.<br />
This seems to work for now <img src='http://www.callum-macdonald.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slicnick</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-83795</link>
		<dc:creator>slicnick</dc:creator>
		<pubDate>Thu, 29 Sep 2011 17:25:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-83795</guid>
		<description>i have greasemonkey on my first account, but it&#039;s not letting me download it on my 2nd account...</description>
		<content:encoded><![CDATA[<p>i have greasemonkey on my first account, but it&#8217;s not letting me download it on my 2nd account&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Riccardo</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-83491</link>
		<dc:creator>Riccardo</dc:creator>
		<pubDate>Tue, 27 Sep 2011 09:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-83491</guid>
		<description>It works great in indows 7 but i want to call an imacro from command line,one for profile 1 and another for profile 2.For the first profile its ok but for the second profile it doesn t work</description>
		<content:encoded><![CDATA[<p>It works great in indows 7 but i want to call an imacro from command line,one for profile 1 and another for profile 2.For the first profile its ok but for the second profile it doesn t work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TK</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-79743</link>
		<dc:creator>TK</dc:creator>
		<pubDate>Wed, 07 Sep 2011 07:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-79743</guid>
		<description>I have it working now. Awesome, thanks so much for this.</description>
		<content:encoded><![CDATA[<p>I have it working now. Awesome, thanks so much for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TK</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-79738</link>
		<dc:creator>TK</dc:creator>
		<pubDate>Wed, 07 Sep 2011 07:09:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-79738</guid>
		<description>Thank you for the reply. I think I am having trouble with greasemonkey in general. I am going to try using scriptish instead and see how it goes. Thanks again for the info on how to do this.</description>
		<content:encoded><![CDATA[<p>Thank you for the reply. I think I am having trouble with greasemonkey in general. I am going to try using scriptish instead and see how it goes. Thanks again for the info on how to do this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-78846</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Tue, 06 Sep 2011 10:34:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-78846</guid>
		<description>I can add that greasemonkey works fine for me in multiple profiles in every version of Firefox since 3.x.</description>
		<content:encoded><![CDATA[<p>I can add that greasemonkey works fine for me in multiple profiles in every version of Firefox since 3.x.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-78845</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Tue, 06 Sep 2011 10:33:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-78845</guid>
		<description>If you&#039;re asking me, I have no idea. Perhaps somebody else will see your question and reply, but somehow I doubt it, this is not a very popular blog post. :-)</description>
		<content:encoded><![CDATA[<p>If you&#8217;re asking me, I have no idea. Perhaps somebody else will see your question and reply, but somehow I doubt it, this is not a very popular blog post. <img src='http://www.callum-macdonald.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TK</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-78835</link>
		<dc:creator>TK</dc:creator>
		<pubDate>Tue, 06 Sep 2011 06:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-78835</guid>
		<description>Hi, I tried this with cometbird browser which is also made mozilla and it worked great. I need to know if there is a way to be able to use greasemonkey and user scripts in the second instance of the browser. Everything seems to work fine except for that. 
Please let me know, I even installed greasemonkey and the scripts on the second instance and they just don&#039;t do anything.
Thank you.</description>
		<content:encoded><![CDATA[<p>Hi, I tried this with cometbird browser which is also made mozilla and it worked great. I need to know if there is a way to be able to use greasemonkey and user scripts in the second instance of the browser. Everything seems to work fine except for that.<br />
Please let me know, I even installed greasemonkey and the scripts on the second instance and they just don&#8217;t do anything.<br />
Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: salvador sciabica</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-78376</link>
		<dc:creator>salvador sciabica</dc:creator>
		<pubDate>Thu, 01 Sep 2011 02:24:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-78376</guid>
		<description>mira a mi no me hace nada me dice no se encuentra ningun elemento coincidente lo con el criterios de busqueda. que puedo hacer?</description>
		<content:encoded><![CDATA[<p>mira a mi no me hace nada me dice no se encuentra ningun elemento coincidente lo con el criterios de busqueda. que puedo hacer?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-75248</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Thu, 28 Jul 2011 01:40:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-75248</guid>
		<description>I&#039;m so glad I found this ability.  I like the idea of separating my private browsing windows from my non-private browsing windows. The one thing that Google Chrome does well.

Callum, your tutorial lets me do exactly what I wanted.  Thanks again</description>
		<content:encoded><![CDATA[<p>I&#8217;m so glad I found this ability.  I like the idea of separating my private browsing windows from my non-private browsing windows. The one thing that Google Chrome does well.</p>
<p>Callum, your tutorial lets me do exactly what I wanted.  Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-71564</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Thu, 09 Jun 2011 11:31:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-71564</guid>
		<description>Personally, no idea. I just tested on Ubuntu and I see the same behaviour, two windows open, one private one normal. If you want to browse private all the time, you could create a profile specifically for that and turn off everything (kill cookies, history, etc, etc). I&#039;m not very familiar with private browsing, but I think it would come to the same thing.</description>
		<content:encoded><![CDATA[<p>Personally, no idea. I just tested on Ubuntu and I see the same behaviour, two windows open, one private one normal. If you want to browse private all the time, you could create a profile specifically for that and turn off everything (kill cookies, history, etc, etc). I&#8217;m not very familiar with private browsing, but I think it would come to the same thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vic</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-71509</link>
		<dc:creator>Vic</dc:creator>
		<pubDate>Wed, 08 Jun 2011 23:20:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-71509</guid>
		<description>Any updates on this one?
I have the same problem: &quot;...-P secondprofile -private&quot; opens one normal and one private window. 
Need to get rid of the normal window on startup

Other than that, fabulous info. Thank you Linux guys :)
(Win7)</description>
		<content:encoded><![CDATA[<p>Any updates on this one?<br />
I have the same problem: &#8220;&#8230;-P secondprofile -private&#8221; opens one normal and one private window.<br />
Need to get rid of the normal window on startup</p>
<p>Other than that, fabulous info. Thank you Linux guys <img src='http://www.callum-macdonald.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
(Win7)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morgan Roderick</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-67518</link>
		<dc:creator>Morgan Roderick</dc:creator>
		<pubDate>Wed, 11 May 2011 10:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-67518</guid>
		<description>Still works like a charm.

I am now running Firefox 3.6.17, Firefox 4.0.1 and Firefox Nightly at the same time on my Win 7 VM.

Thanks for sharing :-)</description>
		<content:encoded><![CDATA[<p>Still works like a charm.</p>
<p>I am now running Firefox 3.6.17, Firefox 4.0.1 and Firefox Nightly at the same time on my Win 7 VM.</p>
<p>Thanks for sharing <img src='http://www.callum-macdonald.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-65941</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Sun, 24 Apr 2011 10:07:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-65941</guid>
		<description>Not sure, maybe the flag changed for private browsing in FF4. Does Firefox load as expected without the -private flag on FF4? I&#039;m really not an expert, not sure what to suggest.</description>
		<content:encoded><![CDATA[<p>Not sure, maybe the flag changed for private browsing in FF4. Does Firefox load as expected without the -private flag on FF4? I&#8217;m really not an expert, not sure what to suggest.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-65474</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Thu, 21 Apr 2011 11:04:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-65474</guid>
		<description>I&#039;ve been using  a similar command for some time but with the added option of -private e.g

start &quot;&quot; &quot;C:\Program Files\Mozilla Firefox\firefox.exe&quot; -private -no-remote -P Myprofile 

This worked fine on firefox 3.6.... one firefox session would open in private mode

However.....  on firefox 4.0  two sections of the same profile would open, one normal and one private ?

Any ideas, I guess this is a bug in firefox4?
Cheers R</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using  a similar command for some time but with the added option of -private e.g</p>
<p>start &#8220;&#8221; &#8220;C:\Program Files\Mozilla Firefox\firefox.exe&#8221; -private -no-remote -P Myprofile </p>
<p>This worked fine on firefox 3.6&#8230;. one firefox session would open in private mode</p>
<p>However&#8230;..  on firefox 4.0  two sections of the same profile would open, one normal and one private ?</p>
<p>Any ideas, I guess this is a bug in firefox4?<br />
Cheers R</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tremble Before Me</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-65140</link>
		<dc:creator>Tremble Before Me</dc:creator>
		<pubDate>Sun, 17 Apr 2011 23:08:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-65140</guid>
		<description>This is sweet, I was trying to follow earlier instructions from others where the profile manager was a separate executable file, your info on the program switches was what I needed. This is vital to run two accounts with two different names in the same game, since cookies are saved to get you into the right account... Thanks for your help.l</description>
		<content:encoded><![CDATA[<p>This is sweet, I was trying to follow earlier instructions from others where the profile manager was a separate executable file, your info on the program switches was what I needed. This is vital to run two accounts with two different names in the same game, since cookies are saved to get you into the right account&#8230; Thanks for your help.l</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kainsmoney</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-63140</link>
		<dc:creator>Kainsmoney</dc:creator>
		<pubDate>Mon, 28 Mar 2011 03:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-63140</guid>
		<description>Thanks buddy, i am using Auto surf programs, and the ram goes up at 1gb ram with easy, need another instance to run small stuffs which does not eat that much and i have enough ram to run more profiles.</description>
		<content:encoded><![CDATA[<p>Thanks buddy, i am using Auto surf programs, and the ram goes up at 1gb ram with easy, need another instance to run small stuffs which does not eat that much and i have enough ram to run more profiles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stu</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-61822</link>
		<dc:creator>Stu</dc:creator>
		<pubDate>Sat, 19 Mar 2011 08:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-61822</guid>
		<description>Windows 7... in the Start Menu Program search box type &quot;Run&quot;, select Run from the list, then &quot;firefox.exe -no-remote -profilemanager&quot; </description>
		<content:encoded><![CDATA[<p>Windows 7&#8230; in the Start Menu Program search box type &#8220;Run&#8221;, select Run from the list, then &#8220;firefox.exe -no-remote -profilemanager&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick @ ionCube</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-60912</link>
		<dc:creator>Nick @ ionCube</dc:creator>
		<pubDate>Wed, 09 Mar 2011 13:25:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-60912</guid>
		<description>Thanks, works a treat for multiple profiles.</description>
		<content:encoded><![CDATA[<p>Thanks, works a treat for multiple profiles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-60465</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Fri, 04 Mar 2011 11:37:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-60465</guid>
		<description>Oh, and you could try pressing the WindowsKey - R, that used to work on older versions of Windows.</description>
		<content:encoded><![CDATA[<p>Oh, and you could try pressing the WindowsKey &#8211; R, that used to work on older versions of Windows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: smaramba</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-60464</link>
		<dc:creator>smaramba</dc:creator>
		<pubDate>Fri, 04 Mar 2011 11:34:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-60464</guid>
		<description>I&#039;m a linux user like Callum, but if memory serves me well, try to search for &#039;run&#039; in the start menu. it should be the topmost result.</description>
		<content:encoded><![CDATA[<p>I&#8217;m a linux user like Callum, but if memory serves me well, try to search for &#8216;run&#8217; in the start menu. it should be the topmost result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ahmet</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-60207</link>
		<dc:creator>ahmet</dc:creator>
		<pubDate>Tue, 01 Mar 2011 09:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-60207</guid>
		<description>Fix that problem ::)) thank you</description>
		<content:encoded><![CDATA[<p>Fix that problem ::)) thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ahmet</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-60031</link>
		<dc:creator>ahmet</dc:creator>
		<pubDate>Sun, 27 Feb 2011 17:13:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-60031</guid>
		<description>On Windows click Start &gt; Run then:
&quot;C:\Program Files\Mozilla Firefox\firefox.exe&quot; -no-remote -ProfileManager

Hi again sorry but just wonder how i can do this on windows 7 ,dont know how to do that dont have run option on windows 7.
Tried to past it to command but didnt work 

Thank you again for your answer</description>
		<content:encoded><![CDATA[<p>On Windows click Start &gt; Run then:<br />
&#8220;C:\Program Files\Mozilla Firefox\firefox.exe&#8221; -no-remote -ProfileManager</p>
<p>Hi again sorry but just wonder how i can do this on windows 7 ,dont know how to do that dont have run option on windows 7.<br />
Tried to past it to command but didnt work </p>
<p>Thank you again for your answer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-60029</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Sun, 27 Feb 2011 15:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-60029</guid>
		<description>I have no idea about Windows, I haven&#039;t used Windows for years and I&#039;m glad to have never owned a Windows Vista or 7 computer. :-) As far as I&#039;m aware, you really don&#039;t need to install anything, it&#039;s just part of Firefox automatically. But to be honest, on Windows, you&#039;re on your own, I focus my support energy on GNU/Linux users.</description>
		<content:encoded><![CDATA[<p>I have no idea about Windows, I haven&#8217;t used Windows for years and I&#8217;m glad to have never owned a Windows Vista or 7 computer. <img src='http://www.callum-macdonald.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  As far as I&#8217;m aware, you really don&#8217;t need to install anything, it&#8217;s just part of Firefox automatically. But to be honest, on Windows, you&#8217;re on your own, I focus my support energy on GNU/Linux users.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ahmet</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-60027</link>
		<dc:creator>ahmet</dc:creator>
		<pubDate>Sun, 27 Feb 2011 15:43:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-60027</guid>
		<description>Hi callum pls can you tell me how to install this on windows 7 it worked fine at vista but couldnt fix it with windows 7 ...

Thank you for the advices 
sincearly</description>
		<content:encoded><![CDATA[<p>Hi callum pls can you tell me how to install this on windows 7 it worked fine at vista but couldnt fix it with windows 7 &#8230;</p>
<p>Thank you for the advices<br />
sincearly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gvf</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-59602</link>
		<dc:creator>gvf</dc:creator>
		<pubDate>Wed, 23 Feb 2011 17:50:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-59602</guid>
		<description>Thank you man, that is I was looking for. Suits perfect!</description>
		<content:encoded><![CDATA[<p>Thank you man, that is I was looking for. Suits perfect!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-59313</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Mon, 21 Feb 2011 13:16:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-59313</guid>
		<description>I think profile names are case sensitive, and spaces are probably ok, but you&#039;d need to surround the name in quotes when you run the command, so you&#039;d run &lt;code&gt;firefox --no-remote -P &quot;profile name&quot;&lt;/code&gt;. Either way, it&#039;s always simpler to use underscores, that avoids all the hassles. :-)</description>
		<content:encoded><![CDATA[<p>I think profile names are case sensitive, and spaces are probably ok, but you&#8217;d need to surround the name in quotes when you run the command, so you&#8217;d run <code>firefox --no-remote -P "profile name"</code>. Either way, it&#8217;s always simpler to use underscores, that avoids all the hassles. <img src='http://www.callum-macdonald.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sarah</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-59312</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Mon, 21 Feb 2011 13:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-59312</guid>
		<description>It&#039;s fixed now. I had a two name profile name set up, deleted it, and made a new one with the same name, but no space inbetween the names. Looks like if the profile has two words in it, they need to have an underscore between them like Jane_Doe and it is case sensitive.</description>
		<content:encoded><![CDATA[<p>It&#8217;s fixed now. I had a two name profile name set up, deleted it, and made a new one with the same name, but no space inbetween the names. Looks like if the profile has two words in it, they need to have an underscore between them like Jane_Doe and it is case sensitive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-58972</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Fri, 18 Feb 2011 17:47:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-58972</guid>
		<description>That sounds like the --no-remote flag is not working properly. Try searching for &lt;a href=&quot;https://duckduckgo.com/?q=firefox+no-remote&quot; title=&quot;DuckDuckGo searchfor firefox no-remote&quot; rel=&quot;nofollow&quot;&gt;firefox --no-remote&lt;/a&gt;, that might turn up some answers.</description>
		<content:encoded><![CDATA[<p>That sounds like the &#8211;no-remote flag is not working properly. Try searching for <a href="https://duckduckgo.com/?q=firefox+no-remote" title="DuckDuckGo searchfor firefox no-remote" rel="nofollow">firefox &#8211;no-remote</a>, that might turn up some answers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sarah</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-58951</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Fri, 18 Feb 2011 10:56:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-58951</guid>
		<description>Whenever I do this and try to open both profiles I get a message that says &quot;Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system.&quot;</description>
		<content:encoded><![CDATA[<p>Whenever I do this and try to open both profiles I get a message that says &#8220;Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DAW</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-56748</link>
		<dc:creator>DAW</dc:creator>
		<pubDate>Fri, 21 Jan 2011 21:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-56748</guid>
		<description>Very helpful.  Thanks for posting this!</description>
		<content:encoded><![CDATA[<p>Very helpful.  Thanks for posting this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-56560</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Wed, 19 Jan 2011 07:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-56560</guid>
		<description>On which operating system?</description>
		<content:encoded><![CDATA[<p>On which operating system?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon ludlum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-56533</link>
		<dc:creator>jon ludlum</dc:creator>
		<pubDate>Tue, 18 Jan 2011 21:49:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-56533</guid>
		<description>ok, working good.  is there a way to make shortcuts for version 3.6 for both accounts to make it easier to get into?</description>
		<content:encoded><![CDATA[<p>ok, working good.  is there a way to make shortcuts for version 3.6 for both accounts to make it easier to get into?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-52832</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sat, 04 Dec 2010 16:03:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-52832</guid>
		<description>I was looking for this info  thanks a bunch</description>
		<content:encoded><![CDATA[<p>I was looking for this info  thanks a bunch</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-49970</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Mon, 20 Sep 2010 09:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-49970</guid>
		<description>No.</description>
		<content:encoded><![CDATA[<p>No.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: led</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-49969</link>
		<dc:creator>led</dc:creator>
		<pubDate>Mon, 20 Sep 2010 07:10:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-49969</guid>
		<description>Is ProfileManager a program I need to download?</description>
		<content:encoded><![CDATA[<p>Is ProfileManager a program I need to download?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jani "robsku" Saksa</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-49242</link>
		<dc:creator>Jani "robsku" Saksa</dc:creator>
		<pubDate>Thu, 26 Aug 2010 02:16:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-49242</guid>
		<description>Thanks, I was actually searching a way to launch firefox instance from remote system (on Linux through SSH connection with X Windows forwarding) but when I had firefox already running locally it would detect firefox running on same display and made remote call to the locally running instance and just open new window (or profilemanager of local systems firefox if that parameter was used.
I already knew -ProfileManager but what really helped me in your article was the no-remote parameter. Thank you!</description>
		<content:encoded><![CDATA[<p>Thanks, I was actually searching a way to launch firefox instance from remote system (on Linux through SSH connection with X Windows forwarding) but when I had firefox already running locally it would detect firefox running on same display and made remote call to the locally running instance and just open new window (or profilemanager of local systems firefox if that parameter was used.<br />
I already knew -ProfileManager but what really helped me in your article was the no-remote parameter. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Всем привет, aka Hello world! &#124; My WebDevel blog</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-47923</link>
		<dc:creator>Всем привет, aka Hello world! &#124; My WebDevel blog</dc:creator>
		<pubDate>Fri, 09 Jul 2010 12:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-47923</guid>
		<description>[...] Multiple Firefox Instances &#8211; просто и понятно. а я смотрю &#8211; у меня в запуске стоит &#8220;firefox -no-remote -ProfileManager&#8221; &#8211; начал выяснять. Пускать параллельно разные профайлы надо оказывается так: &#8220;firefox.exe&#8221; -no-remote -P &#8220;secondprofilename&#8220;. то что надо. на ту же тему How to run different Firefox profiles at the same time [...]</description>
		<content:encoded><![CDATA[<p>[...] Multiple Firefox Instances &#8211; просто и понятно. а я смотрю &#8211; у меня в запуске стоит &#8220;firefox -no-remote -ProfileManager&#8221; &#8211; начал выяснять. Пускать параллельно разные профайлы надо оказывается так: &#8220;firefox.exe&#8221; -no-remote -P &#8220;secondprofilename&#8220;. то что надо. на ту же тему How to run different Firefox profiles at the same time [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Setting Up a Clean Firefox Profile : touchground.com</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-44488</link>
		<dc:creator>Setting Up a Clean Firefox Profile : touchground.com</dc:creator>
		<pubDate>Wed, 10 Mar 2010 15:11:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-44488</guid>
		<description>[...] http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/" rel="nofollow">http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Firefox Blog</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-35465</link>
		<dc:creator>Firefox Blog</dc:creator>
		<pubDate>Sat, 25 Apr 2009 14:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-35465</guid>
		<description>&lt;strong&gt;Utilizzare più profili di Firefox allo stesso tempo...&lt;/strong&gt;

Sapevi che è possibile eseguire più di un profilo di Firefox in una sola volta? Questo può essere estremamente utile se si vogliono testare le estensioni più facilmente, creare un profilo di sviluppo web, eseguire un profilo snellito solo per Gmail...</description>
		<content:encoded><![CDATA[<p><strong>Utilizzare più profili di Firefox allo stesso tempo&#8230;</strong></p>
<p>Sapevi che è possibile eseguire più di un profilo di Firefox in una sola volta? Questo può essere estremamente utile se si vogliono testare le estensioni più facilmente, creare un profilo di sviluppo web, eseguire un profilo snellito solo per Gmail&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob W</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-34854</link>
		<dc:creator>Bob W</dc:creator>
		<pubDate>Wed, 01 Apr 2009 18:56:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-34854</guid>
		<description>Very helpful, works like a charm. A second instance of Firefox in my startup menu now opens Craigslist searches for all items I&#039;m patiently waiting to find at bargain prices...</description>
		<content:encoded><![CDATA[<p>Very helpful, works like a charm. A second instance of Firefox in my startup menu now opens Craigslist searches for all items I&#8217;m patiently waiting to find at bargain prices&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Callum</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-28339</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Mon, 04 Aug 2008 02:23:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-28339</guid>
		<description>@&lt;a href=http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-28335&quot; rel=&quot;nofollow&quot;&gt;thunderror&lt;/a&gt;: I&#039;m not sure what you mean. It should load different profiles in each instance. As far as I&#039;m aware, you can&#039;t load the same profile in two instances simultaneously.</description>
		<content:encoded><![CDATA[<p>@<a href=http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-28335" rel="nofollow">thunderror</a>: I&#8217;m not sure what you mean. It should load different profiles in each instance. As far as I&#8217;m aware, you can&#8217;t load the same profile in two instances simultaneously.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thunderror</title>
		<link>http://www.callum-macdonald.com/about/faq/multiple-firefox-instances/comment-page-1/#comment-28335</link>
		<dc:creator>thunderror</dc:creator>
		<pubDate>Sat, 02 Aug 2008 14:32:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.callum-macdonald.com/faq/multiple-firefox-instances/#comment-28335</guid>
		<description>Just what I was looking for. I added the no-remote switch and now it works, only problem is, it still continues to load the already loaded profile in the second instance as well...</description>
		<content:encoded><![CDATA[<p>Just what I was looking for. I added the no-remote switch and now it works, only problem is, it still continues to load the already loaded profile in the second instance as well&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

