Firefox profiles aren't very useful - all instances open with same one

I am running Linux: LMDE Cinnamon Edition - 64 bit
I am using firefox version Mozilla Firefox 31.0
I wish to have two instances of FF running. One with my standard, personal settings and a second instance that ONLY connects to Facebook and will stop data leaking between the two. I can acheive this by opening Facebook in another browser (e.g. Chrome or Opera).
I checked the ProfileManager under Firefox and created a second profile called "FB".
I can run firefox -p FB and it will open an instance of FF with none of my personal settings available - that's what I was hoping for.
However, if I run a second instance of FF - for example from the command line as firefox -p default it loads with the same profile as the first instance I opened, not the new profile as specified in the command.
I can only select the profile if there are no prior firefox instances running under my user-id. The first instance defines which profile is used for all subsequent executions - no matter which profile I specify on the command line. Even running firefox -ProfileManager will start with the first-specified profile, not the profile manager.

Hello,
If you want to run multiple instances of Firefox, you need to add a -no-remote parameter to the command.
For example:
* firefox -P -no-remote
Please see:
* http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile

Similar Messages

  • Good practice to initalize all instance variables with type String to emptr

    Is it a good practice to initalize all instance variables with
    type String to emptry string?
    #1 approach:
    public class A
    { private String name = "";
    private String address ="";
    //etc...
    rather than
    #2 approach:
    public class A
    { private String name;
    private String address;
    //etc...
    When I read Java books, the examples don't usually do #1 approach.
    The problem is if we don't initialize to empty string, when we call
    the getter method of that instance variable, it will return null.
    Please advise. Thanks!!

    Please advise. Thanks!!It depends on your coding style. If you can avoid lots of checks for null Strings in the rest of the code then why not initialize to "".
    You have the same situation when a method returns an array. If you under circumstances return a null array reference then you have to always check for this special case, but if you return a zero length array instead you have no special case. All loops will just run 0 iterations and everything will work fine.
    So in general I guess the return of zero objects instead of null references really boils down to whether it simplicates the rest of your code by removing lots of extra checks for the special null case. This usage is especially favourable in the zero length array case. See Effective Java by Bloch, item 27.

  • Unable to open firefox - get message that " a copy is already open and only one copy can be open at a time. I have dragged the app to the waste basket and downloaded another firefox app. However same result". I have a IMAC , V.10.6.3.

    Unable to open firefox - get message that " a copy is already open and only one copy can be open at a time. I have dragged the app to the waste basket and downloaded another firefox app. However same result". I have a IMAC , V.10.6.3.
    I get above message when I click on the firefox icon.

    This worked, I used the method described in this link http://forums.mozillazine.org/viewtopic.php?t=365156, and opened the Mozilla profile screen with the terminal on my mac, using the language given in the links. Then I duplicated my original profile to save the bookmarks, etc. Put them in a folder listed Duplicate profile with the date. With the open profile screen, I deleted my original profile, created new profile folder and then a new profile. Note that profile cannot be created in the system library, it must be created on the disc, because the library will not allow writing into it. After I created my new profile folder, I dragged all my old information into it, and it worked. Firefox closed and the error disappeared. You must be VERY careful to make sure Firefox is closed anytime you are doing anything with the profile folders. I think that is what caused my original problem.

  • Close all the open Application in one-shot ?

    Is there are any way to close all the open application in one shot in ipad rather than double-click the home button and close the apps one by one.

    In principle, I agree with you...
    But it appears that reality is not perfect. I observed on iPhone 3 that memory could be pretty clogged from time to time and I needed to restart it to free up memory and get it back to original speed again. It all depends on which apps you are running. Some appears to eat more memory than others. On iPhone 4, it appears to be less of a problem and I have seen that later iOS releases also makes this less of a problem. I only have a first generation iPad, but I have seen that later iOS releases have improved memory handling significantly there as well. However, it appears to be a good idea to reboot the device after a week or two just to flush the memory. I can't prove this theory scientifically, but I do see a difference in memory usage when doing this.
    The reason I actually tried "Process Killer" was a tip that it addressed the problems many of us encountered with the first iOS 5 release: frequent crashes and slow performance. After the pretty quickly released iOS 5 update, that wes pretty much solved, but occasionally killing processes actually helped me at that point, It made both my devices more stable.
    The original question was about battery performance, there I don't think that the amount of processes running is the key. A much better way of getting more out of your battery is shutting off location services in apps where they are not really needed. I would guess that turning off push notofications for as many apps as possible helps as well.
    Also, turn off the Personal Hotspot on iPhone when it's not needed!

  • CC14, all files open with asterisk in file name.

    CC14, all files open with asterisk in file name, need to save or cancel to close file. Is there a way to change that?

    No. It happens to any InDesign file. I created a new file in CC14, saved, closed, opened and it had the asterisk.
    If it is a time synchronization, how do I correct that?

  • When I closedown Firefox it does not ask me if a want to "save and close" my tabs. This is something that I use all the time with the older version. Is it still possible to do that?

    In the old version of Firefox I could save all my open tabs when I shutdown Firefox but now with the new version it does not give me that option to save the tabs before closing Firefox.

    You can set the warn prefs on the about:config page to true via the right-click context menu or toggle with a double left-click.
    * browser.tabs.warnOnClose , see http://kb.mozillazine.org/About%3Aconfig_entries
    * browser.warnOnQuit , see http://kb.mozillazine.org/browser.warnOnQuit
    * browser.warnOnRestart , see http://kb.mozillazine.org/browser.warnOnRestart
    * browser.showQuitWarning (Firefox 4 only)

  • How to use multiple instances of the same dll ?

    Hi,
    I'd like to use multiple instances of a jni dll . I have created
    different threads, in each thread, I have called System.loadLibrary(..),
    and I would like each thread to access a different instance of this
    library.
    Unfortunately, the loadLibrary function is effective only once so I
    can not find the way to do this.
    Can anyone help me on this ?
    Thanks.
    Francois.

    Hi, :)
    and I would like each thread to access a different
    instance of this library.In Win32, this is outright impossible. A DLL will only exist once in a process space.
    In Unix, or at least in Solaris, I think this is also not possible, as libraries are loaded by the dynamic linker, and it keeps tabs of which modules have already been loaded into the process space.
    I'm assuming your problem is that your native library has non-reentrant code.
    If so, there are two approaches you can take to this:
    1) If you have access to the source code for the native library, change it so that it is reentrant.
    2) If you do not, change your Java code so that access to the native code is made from whithin synchronize blocks.
    If your problem is of a different nature, I'll second the words of the previous poster and ask you what it is...
    Cheers,
    J.

  • Stop the constant pop-ups telling me to get Firefox 5. Something I use all the time is not compatible with it so I do not want 5.0. I get a box about every hour.

    Actually there are two things I use a lot that are not compatible with Firefox 5. I did switch to it and discovered the big problem, so I had to go back to my previous Firefox. One of them that I use constantly for my passwords is Roboform -- I don't remember which one but one of the most recent. I get a box in the middle of my computer about once an hour saying that I should switch to Firefox 5. It is driving me CRAZY. How can I make it stop?
    Also, who has to make Roboform and Firefox 5 compatible?

    Every add-on developer is responsible for updating their add-on as Mozilla releases new versions of Firefox. Check with Roboform for an update for their Firefox add-on.
    You can use the Add-on Compatibility Reporter to try and "fix" that other add-on. <br />
    https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/ <br />
    ACR has worked with every 4.0 extension that I have tried it with on Firefox 5.0 - but there may be some add-ons where it won't work, and the add-on has to actually be modified by the original developer.

  • AS 3:calling all instance names with similarities

    As the title suggests I am looking to RegExp as a means to
    find similiarities between diffferent movieclip instance names. I
    have many clips that have an instance name that begins with "step"
    that reside on the maintimeline. The logic written out should be:
    If a movielcip exists on the timeline, whats its name, does
    it have this string within its instance name, if so do this.
    Unfortunately my code does not accomplish this quite
    yet.

    I'd think this would be the same in 3, but in 2 you'd use
    array access
    notation like so:
    var myIndex = 3;
    this["step_" + myIndex].moveUp();
    this would call moveUp within step_3. You can interate
    myIndex in a loop, of
    course, to call the function in a group all at one time.
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Is there any command line option, so that when I open firefox from command line it uses the already opened firefox, instead of creating a new firefox window.

    for example: this option is available with jedit editor.
    jedit
    above cmd always opens a new jedit instance.
    jedit -reuseview
    above cmd checks if there is a existing jedit instance if yes brings it to focus else opens up a new one.

    Start your '''Computer''' in safe mode with networking. Then start Firefox.
    After a bit, close it. Then open it a few minutes later.
    '''[http://encyclopedia2.thefreedictionary.com/Linux+Safe+Mode Starting The Computer In Safe Mode;<br>Free Online Encyclopedia]'''

  • How to use google toolbar in firefox 5? Can I use the older version with google toolbar or I have to delete firefox from my computer using IE etc?

    I want to use google toolbar in firefox 5, but it does not support it.

    You can try this extension to override compatibility issues - once it's installed, you can just re-enable Google toolbar.
    * https://addons.mozilla.org/en-US/firefox/addon/add-on-compatibility-reporter/
    If you still want to downgrade, see here:
    * http://releases.mozilla.org/pub/mozilla.org/firefox/releases/latest-4.0/win32/en-US/
    * [[installing firefox]]

  • Why has my iPad 2 suddenly started to use all my data allowance in one night?

    My ipad 2 used up my January 1gb data allowance in one night while I slept and my ipad wasn't being used. When I contacted my provider as a gesture of goodwill reinstated my 1gb.  I was extremely careful with my usage.  I only surfed the net using my Cellular Data and used a WiFi connection for any downloads.  I had used about 450mb up until the 21st of this month and then suddenly I had completely used the rest of my allowance in one day.  I do not watch you tube, Facebook, Twitter or use any social media.  Very frustrating as the previous 8mths of using my ipad I had never gone over my data allowance.  It seems to have started when I have been using WiFi in one location and then back to Cellular at home.  I am fortunate that my provider slows the connection and makes it impossible to use, therefore I don't get charged extra fees. 

    The iPad always uses wifi first when available. If not available, it switches to cellular, if cellular is turned On. You must be losing wifi connection. To keep from using your data plan, turn cellular Off, except when you need it.
     Cheers, Tom

  • How to listen (stereo) divx movies using all 5 speakers with x-fi and I-Trigue 5.

    Like Creative wrote on their web site:
    24-bit Crystalizer makes all audio sound better, including MP3/WMA, streaming audio and video, DIVX and DVD movies.
    So I suppose when playing divx movies I'd hear sound from all 5 speakers? Actually rear left and rear right are with really low volume (hard to hear).
    There is alo another question do I need to use CMSS on my speakers (I have Creative I-Trigue 5. and also option directly on souround system to use CMSS, or do I need to activate it on X-Fi Music? Which is the best combination to have stereo divx/xvid movies on all 5 speakers?)
    There is also the last question what player is the best for playing movies, because I use zoom player which use AC3 plugin trying to extrapolate from stereo movies to 5. so I suppose this have to be turned off to have it done by X-Fi card?
    Thanx a lot. hope you can help me.

    I own those speakers and as someone else pointed out they're not true 5. speakers, they are only true for movies, not for games, even with the adapter, the center channel will not pick it up. I opted for another manufacturer speakers. When that came out, it was top of the line, high tech etc. But only really for movies, I have it hooked up to my DVD player now and that's all it's good for. And when I had it hooked up to my computer all I was ever able to get out of it was 4. with the spdf adapter and connection.

  • Want to globally manage all Wireless devices with wired ones using SNMP

    Wired devices are already managed, but wireless devices of particular interest which I desire to manage are:
    Autonomous:
    AIR-AP1121G-J-K9
    AIR-AP1121G-J-K9
    AIR-AP1131AG-J-K9
    AIR-AP1131AG-P-K9
    AIR-AP1131AG-J-K9
    AIR-AP1131AG-P-K9
    AIR-AP1210
    AIR-AP1210
    AIR-AP1210
    AIR-AP1210
    AIR-AP1231G-J-K9
    AIR-AP1231G-J-K9
    AIR-AP1232AG-J-K9
    AIR-AP1232AG-P-K9
    AIR-AP1232AG-J-K9
    AIR-AP1232AG-P-K9
    AIR-AP1242AG-P-K9
    AIR-AP1242AG-P-K9
    WLC
    4400 Series Wireless LAN Controller
    2100 Series Wireless LAN Controller
    3750 Series Integrated Wireless LAN Controller
    Is there any single document which compares which traps/alerts are available in which devices/IOS versions or must I pull teeth to compare them?
    A simple reference chart/URL would be quite helpful.

    The AIR-AP1121G-J-K9 gives off certain traps. What are they?
    Likewise, all of the following devices also give off traps.
    AIR-AP1121G-J-K9
    AIR-AP1131AG-J-K9
    AIR-AP1131AG-P-K9
    AIR-AP1131AG-J-K9
    AIR-AP1131AG-P-K9
    AIR-AP1210
    AIR-AP1210
    AIR-AP1210
    AIR-AP1210
    AIR-AP1231G-J-K9
    AIR-AP1231G-J-K9
    AIR-AP1232AG-J-K9
    AIR-AP1232AG-P-K9
    AIR-AP1232AG-J-K9
    AIR-AP1232AG-P-K9
    AIR-AP1242AG-P-K9
    AIR-AP1242AG-P-K9
    WLC
    4400 Series Wireless LAN Controller
    2100 Series Wireless LAN Controller
    3750 Series Integrated Wireless LAN Controller
    I'm sure that not all devices list above give off the exact same traps nor do all the devices support the same IOS versions.
    That said, looking at which devices support which IOS versions and then looking into each IOS version "ASSUMING" that every device supporting that IOS supports all of those traps is an assumption which network managers cannot take.
    So back to my original question.
    Where can I find a list of Alerts supported by each of the above listed products?
    Walt

  • I try to open firefox but it says firfox is all ready open. As a result, I have to restart computer.

    This happened with 4.0 and previous version.

    You could try Ctrl - Shift - Esc to open the Task Manager. Click the Processes TAB. Click the Image Name column header to sort the list. Locate firefox.exe. Right click it and click 'End Process'. Then try opening Firefox again.
    No need to reboot.

Maybe you are looking for

  • Intercompany STO between 2 Full Warehouses with Handling Unit Activated.

    Hi, I want to perform Intercompany STO between plant A and B both have Full warehouse management activated with HU Mgmt. Will this process be exactly same as the generic process? - Create PO - Do VL10g - Go to VL02n and then create TOs and assign HUs

  • Vendor master - purhcasing data

    Hi, Can any bady tell where i will get information of all the fields in vendor master - purchasing data such as 1.Order optim.rest 2.Pricing Date Control etc. Regards Mahesh M J

  • Combining vts files

    I just got a new computer and have had to load all my programs from the start. (GRRRRRRR) just about have them all back, but I used to have a free program that would combine my vts files. does anybody know the name of a good program, I forgot the nam

  • Upgrade when using single middle tier, multiple instances

    I'm wondering a little bit about a special case for upgrades. I know that I can install HTML DB once (in a new Oracle Home) and then either 1) install it in other DB's via the installer and drop the new Oracle_home's (creating another DAD in the firs

  • ITunes not displaying some songs on Library

    Okay I've had this problem for quite sometime and it's been bugging me because I have no idea how to fix it. It seems that whenever I change the actual file name of the song (ie. songs that I've ripped from CD's that that say "Track 1" I just change