Maluvia

Using same Firefox profile from multiple OS or PCs

Nov 13th, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. To keep your Firefox profile consistent across multiple OS installs on the same PC, or different computers, you can use DropBox, as follows:
  2.  
  3. Make sure Dropbox is installed on all OS you are using. Move your Firefox profile folder into your Dropbox folder, and make sure it is included in selective sync settings.
  4.  
  5. If moving on Linux, make sure you use:
  6. # cp -a /path/to/firefoxprofilefolder /path/to/Dropboxfolder
  7.  
  8. To make this work effectively though, pause syncing on Dropbox before you open the browser, so it won't be trying to write new files into the profile folder, and upload them to Dropbox at the same time.
  9. Just let the profile files be updated on your local drive during a browser session, then after you close the session, resume Dropbox syncing to update the files online.
  10.  
  11. This way you not only have the bookmarks and open tabs syncronized, but also, all the addons and plugins you have installed, so you don't have to reinstall them in each OS.
  12.  
  13. Tip: Go into about:config and browser.disk.cache.enable to false, otherwise you create too many cache files on disk to sync. If you have plenty of RAM, disk caching is totally unnecessary.
  14. And if you are booting off a flash drive, always have disk caching disabled.
  15.  
  16. To avoid having to have multiple copies of /Dropbox folder on separate partitions, move /Dropbox to a dedicated data partition that is mounted on boot, then add
  17.  
  18. mount -o bind /path/to/data/partition/Dropbox /path/to/local-directory
  19.  
  20. To startup scripts somewhere (like bootlocal.sh in tinycore)
  21.  
  22. Also, create user buttons in your file manager (like emelfm) to mount, and dismount the dropbox folder.
Advertisement
Add Comment
Please, Sign In to add comment