How to synchronize two profiles in firefox, everything except localstore.rdf

Yesterday, I asked about the binding cache between two profiles in firefox:

https://support.Mozilla.org/en-us/questions/925836

And I got to thinking. The only reason why I'm even a second profile is to have two 'places saved window' for purposes of multi-monitor. I want that these profiles to be EXACTLY the same except for the location in which they are open (which is registered in localstore.rdf). It occurred to me that with my current setup in the thread above, even if the caches are now linked... I still have to change twice bookmarks. Have two different stories, saved passwords, etc. A minor inconvenience at best, but it would still be nice to avoid.

As I said, I want these identical profiles, except for the locations in which they are open. I know there are extensions for synchronization of profiles, but they all seem to be 1 star performance that hinder the mess. I prefer to do it manually, as I did with the cache. Possible?

Found an answer myself, mklink. I delete the places.sqlite (the file where the bookmarks are saved) my 2nd monitor profile. I then go to CMD and create and MKLINK by running the following:

MKLINK C:\Path\to\Mozilla\Firefox\Profiles\monitor2\places.sqlite C:\Path\to\Mozilla\Firefox\Profiles\default\places.sqlite

This creates a shortcut in my profile monitor2, redirecting to the profile folder of the monitor of my first for the file places.sqlite. TADA, the bookmarks are sync'd and the changes are saved to both directions. I developed this and created mklinks for formhistory.sqlite, cookies.sqlite and permissions.sqlite. Works perfectly and synchronizes both ways, as did places.sqlite.

Tags: Firefox

Similar Questions

  • How can I combine two profiles of Firefox themes and extensions?

    I have two profiles of Firefox, I want that they remain separated, but have the same choice of themes and extensions. How can I do this?

    TIA

    Brian Kochera ABCDT M
    Sit stay and beyond LLC
    Ways of dog not Mayhem

    Greetings Brian.M.Kochera

    There is an add-on called FEBE, and it allows you to export virtually everything that Firefox offers (including modules) as installable files.

    So basically, you can take the range of extensions and export them in another Firefox profile.

    [[Module FEBE |]] https://addons.mozilla.org/en-US/firefox/addon/febe/]]

    Please update us your results!

  • How to synchronize two chassis

    Dear all,

    I want to synchronize two chassis, chassis first has RFSG 5673E (S) and other chassis a DAMA (S) 5663E, they are connected via MXI, is there anyone who has this experience and can support me to apply it. I know that he used NI-Tclk to synchronize in a single chassis and there is another kit of tools for mult chasis, but I have no idea on how to use it!  Thanks in advance

    Best regards

    Al-Rawachy

    So I did a little research and to allow you to synchronize the two chassis together you must use a map of timing and synchronization in each frame so that you can share Tclk. This is for several reasons: first of all, as well as terminals IN CLK and CLK OUT, several PFI lines are required for the export of various signals used by T - CLK (i.e. Start, Stop and Sync triggers). In addition, the map of timing and synchronization is also necessary to replace clock background basket of 10 MHz, on the chassis of the slave with the master clock. It is essential for the two hunts reference the same clock synchronization. In addition, using a more stable clock source, as provided for in the calendar and map of synchronization, improve synchronization significantly.

    From there, a chassis are sync'd up, TCLKing la 5665 and 5673E should be simple enough. It should be simply a matter of configuration tasks the DAA and RFSG, with a single trigger configured, before feeding the two tasks of the TCLK vi. Here is an example for you to study what explains this:

    http://www.NI.com/example/30254/en/

    I hope this helps.

  • How to save the profile, history, bookmarks, everything in Firefox on the Cloud for emergency recovery?

    I work a lot on Mozilla and at times, I forgot to take backup of Firefox.
    Chrome has a feature with his Google ID that allows to restore "Everything."

    Firefox provides a feature something like this.

    Name (e-mail address used), password and synchronize account key / recovery key are the 3 things you need to do to install Sync on the 'new device' which reinstalled how Firefox is classified.

    And what you selected under Sync my will be restored.

  • I have two profiles of Firefox. The default value is updated to the latest version. The second profile is version 3.6.25. I can not get the second profile to update to the latest version. How do I do that?

    I don't have administrative authority on this computer, but it has never been a problem before with the update.

    I don't have the chance to check this Monday. In the meantime, version 10 is out. I made sure that my default profile has been completely liquid and manually update the secondary profile, it closed and reopened and had the update. When I opened the default profile, there is not automatically updated but I was able to update without problem. I think I'll call it's good for now and see what happens the next time that we update. I always have our Manager to update the modules for me but because it is the only administrative authority. Thanks cor - el!

  • How to synchronize two cards NI9215 DAQmx?

    Hello

    I use two NI9215 DAQmx cards (analog inputs sample simultaneous 4ch) in a cDAQ-9174 chassis type.

    Because I need to acquire 8 channels at the same time, I have two NI9215 cards.

    My question is how to configure these cards to be synchronized?

    I use LabVIEW2009 SP1 dev Suite.

    Thanks for the replies!

    One of the nice things about CompactDAQ is that you can put multiple modules of the same time (analog, digital, etc.) in the same spot and they are automatically synchronized.  Then, to synchronize the two modules, create an analog input task and reference strings like "cDAQ1Mod1 / ai0:3, cDAQ1Mod2 / ai0:3.  It automatically synchronizes the two modules together.

  • How to synchronize two timers that send data?

    Hi, I have a problem:

    I have a thread in which I have two timers with timerTask. two of them will send data on the server. the first 5 sec every one and the all other the 1 sec the problem is that when I run the defective computer application (disconnection with an IOException error) after 3-4 sec, I think it's probalby because in an instant, both of them are trying to send data and can only be in one second. I tried to create both a dataOutputStreams but this is not enough. Here is my code:

    //in my thread, run method:
    
    public void run(){
    
     synchronized(_firstTimer){
    
    //send data every 5 sec
    _firstTimer.scheduleAtFixedRate(new TimerTask(){
    
     public void run(){
       sendData(_data1);
    }
    },0, 5000);
    }
    
    while(true){
    
      synchronized(_secondTimer){
    
    //send data every second
      _secondTimer.scheduleAtFixedRate(newTimerTask(){
    
            public void run(){
    
         sendData(_data2);
    }
    
    }, 0, 1000);
    }
    
    }//end of while
    
    }//end of run()
    
    //and sendData() method:
    
         public boolean sendData(byte[] _b){
                int length = _b.length;
    
                try{
                    _os.write(_b, 0, length);
                    _os.flush();
    
                    return true;
                } catch(Exception e){   return false;   }
    
            }//end of sendData method
    
    //where before in the code i've got:
    SocketConnection _s = (SocketConnection)Connector.open(_address);
    _os = _s.openDataOutputStream();
    

    can someone please provide all my advice how to fix this?

    Kind regards

    a solution would be a 'executable queue", a vector that contains objects that implement the runnable interface and executes one by one.
    the two timertasks add their treatment to the queue (synchronized) and directs the queue.

    It is a lot of material on threads synchronization available on the net because it is one of the most basic problems of treatment / distributed computing.
    I'm sure you can find detailed examples to sun.com and many other java sites.

  • How to synchronize Adobe REader with Firefox browser

    I can see is more than all the attachments pdf while in Mozilla - I save the file and then display. How can I display in Mozilla?

    Have you tried the Preview in Firefox value in the Message Application?

  • How to synchronize two ports data series at different frequencies of sampling?

    I have a .vi I'm reading two different sensors that operate at different sampling rates high.  I am able to read these two, however, there seems to be some problems of synchronization/strange offset with the devices.  The first device is a device running at 5 Hz GPS.  This is convenient because the time GPS is included in the data that I read.  The other device is a sensor operating at 6 Hz.  Ideally, I am recording the data of these two devices in the same file.  An example is attached.  It seems he collects GPS data, although it seems to write at much lower rates.  Strangely, as it is written to the file, it will slowly store 'blocks' of data in order to a much lower rate.  It seems that a lot of the GET of a buffer, and then it jumps ahead by about 5 seconds (see lines 214-220 of the attached file).  Meanwhile, the data from the sensor 6 Hz are get recorded normally.  I'm puzzled.  Would it not be better to connect these as separate sets of data in separate files?  Creating two executions of read/write "parallel" within the same .vi?

    Any help or examples, would be much appreciated!


  • synchronize two exits of meter 6071E map

    Well, that's usually how to synchronize two problem of counters.

    I use the 6071E with DAQmx .NET 4.0. I set a task and attach to two channels with implicit synchronization and zero initial delay of meter output. When executing the program

    I catch the first edge with a single trigger to scope. There is always a delay between the first edge of ctr0 and the first edge of 16.3 microsecs ctr1. Is it possible, not to mention that affecting the initial delay of ctr0 16.3 microsecs to make meter always start together? What is the source of the delay(software/hardware) and must always remain constant.

    any help is welcome

    The source of the delay is that while he is in the same tasks that the counters are always started sequentially by software.  I'm surprised that the delay you see is constant.

    If you want the counters to start together, you must configure a start trigger.  As soon as you begin the tasks of meter in the software, issue the trigger to start to generate your pulse output.  Relaxation of beginning must be a signal of material - for example, you can configure a digital outputs in software timing and the lead back to one of the PFI lines.

    If you want to avoid any additional wiring, you could split the counters in two separate tasks.  Trigger a counter with the internal performance of the other (start the task that will be triggered everything first).  In doing so, instead of using an external trigger, I expect a delay between the order of 100 ns counters as the initial delay is at least 2 timebase tick.

    Best regards

  • I downloaded separately from all parties to a four-part harmony song, how can I synchronize. two or three playing together? Windows 7.Thanks.

    I downloaded separately from all parties to a four-part harmony song, how can I synchronize. two or three playing together?

    Hello

    Plenty of capable edition

    Audacity - free
    http://Audacity.sourceforge.NET/

    Audacity - Forums
    http://Forum.audacityteam.org/

    Free Audio Editor - free 2012
    http://www.free-audio-editor.com/

    Other sources of information:

    http://Forum.recordingreview.com/

    http://www.djforums.com/forums/

    http://Homerecording.com/BBS/

    http://www.pcmusicstuff.com/

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • How can I get a new firefox profile?

    My firefox was working properly before, I made a few bad decisions (I deleted a bunch of stuff, I know now that I shouldn't have deleted) and now when I try to open it, I get a pop up window that says:

    'Missing profile '.

    Cannot load your Firefox profile. It may be the mission or inaccessible. "

    I came to the conclusion that I need a whole new firefox, I'll miss the old favorites, but I don't need them. Please could someone explain how I can create a new firefox profile? I love using firefox and I don't want to use a different browser. I'm on a mac.

    This article describes how to create a new profile: use the Profile Manager to create and delete profiles Firefox.

    You may also be able to find old favorites, but we will go back when Firefox is up and running in a fresh profile.

  • How do I sync and import/export bookmarks between different users on the same computer and two using the Firefox browser?

    All the help instructions are to import and export bookmarks bookmarks between different brands of browsers.

    Assuming that each of these different users use a different profile of Firefox. You can use the built in Fx4 Sync feature. Click on Setup Sync in the menu selections, create an account and then have each user created their profile to use this new account synchronization. It syncs more bookmarks; things like history, passwords, etc. So if it's only the bookmarks you are concerned with that, use customize only synchronize bookmarks when you set up each user. Good luck and have fun in sync.

  • How to create a new profile in Firefox 3.6?

    I would like to create another profile in firefox to make several stable version however I can't seem to do this in firefox 3.6
    Instructions have until this be run "firefox.exe - ProfileManager" or "firefox.exe Pei" in the run window command prompt, but I see in a new browser that opens.

    So, I see not where is the folder actually for my profile
    C:\Users\MYNAME\AppData\Roaming\Mozilla\Firefox\Profiles but I don't know what I'm supposed to do from there

    This has happened

    Each time Firefox opened

    The Profile Manager will open if all Firefox processes are closed.
    You can check under the processes tab in the task (Ctrl + Shift + ESC) Manager

    If you can't make it work then try to add the - No.-switch remote to see if this brings up the Profile Manager.
    Firefox.exe - no-remote Pei
    Add a space before - No.-remote and before Pei

  • Can W7 \64 bit\FF42.0\How I move the profiles?

    Everything seems to work perfectly. But I realized that I should be able to find how to move my profile to another drive on my computer somewhere in the profile itself. I've looked everywhere I can think of and can't find this info. If you can tell me where it is, maybe I can manage. But if not, can you tell me how to move the profiles? My os is Windows 7 Pro 64 bit. I am running Firefox 42.0. Your guesses are all correct, except that I'm not sure about the plugin from Adobe. Thanks for any help.

    You can use the Profile Manager to create a new profile on a different hard drive folder by clicking on the button "choose a folder.
    Be sure to select a new empty file and not a folder that already contains files.

    You can transfer files from the current profile folder to this folder.

Maybe you are looking for

  • Equium A300D: Software of the camera shows the last picture I took 6 months ago

    Hello Just started to use the built in camera on my Equium A300D after a long break (6 months). The software seems to work very well I see that it is in front of the camera in preview and everything seems good. However, when I press the snapshot butt

  • My dirvers CD/DVD do not work. __

    What can I do for my CD\DVD drivers in my Windows Vista system to work, because they don't work?

  • Brother printer and the scanner does not work after Windows Update.

    Separated from this thread. I have the same problem with my Brother ADS2000 scanner and my multi MFCJ4710.  I can print with the MFC, but the Control Center detects or scanners.  They worked and suddenly stopped.  I wonder if Windows update changed s

  • CN AD 11 g connector update attribute

    HelloWe have OIM 11 g r1 talk to AD 2010 using AD 11.1.1.6 Connector. We are not able to update the CN attribute of the user on the last change of name or surname.Its our requirement to update CN of the user on the evolution of the FN or LN. Has anyo

  • Could not find the front desk

    I just discovered that an Adobe charged me a fee, I think it's annual fee.however, I can't find the reception when I connect to my own account, please help