Please To Support Us Click any of Links Blow :

Monday, January 14, 2008

How To Backup Your FireFox Bookmarks

Like everything else with computers, if you do not have a backup when your PC crashes, you will fflogo.jpglose everything. For everyday applications such as browsers, backing up your bookmarks does not require a complete hard drive backup to keep them from being completely wiped out.

By default Firefox backups your bookmarks automatically when it is closed to C:\Documents and Settings\[your username]\Application Data\Mozilla\Firefox\Profiles\[profile name]\bookmarks.bak. To restore, just rename to bookmarks.html.

Firefox will also archive, by default, the last five saves to the bookmarkbackups folder at the same location. The number of times it archives, can be modified by typing in the address field: about:config and changing the value for browser.bookmarks.max_backups.

You can also export your bookmarks with Bookmarks Manager.



To access Bookmark Manager in Firefox, click Bookmarks from the menu, then Organize Bookmarks. Once Bookmark Manager opens, select File/Export from the menu and select a destination to save the bookmarks.htm file.

ffbm.jpg

For safe keeping, you should copy bookmarks.htm to CD or USB Drives. To restore, just select File/Import and browse to the location of the bookmarks.htm.

If your seeking an automatic solution, checkout Foxmarks Bookmark Synchronizer at https://addons.mozilla.org/firefox/2410/. Foxmark is an Firefox add-on that works silently in the background to keep your bookmarks synchronized between two or more computers.

Foxmarks Bookmark Synchronizer add-on will need to be installed on all computers in order to synchronize.

fmarks.jpg

For mobile access from any computer, you can create an account at Foxmart and log on to access your bookmarks.

Another solution is Google Browser Sync, which is an extension that continuously synchronizes your browser settings – including bookmarks, history, persistent cookies, and saved passwords – across your computers. It also allows you to restore open tabs and windows across different machines and browser sessions. (a Google account is needed to run Google Browser Sync).

If your like me and just want a simple way to backup your bookmarks, use the first method above to save the bookmarks.html by creating a batch file on your desktop. Follow the steps below:

Microsoft Windows

  1. Create a file on your desktop and give it a name with .bat extension such as ffbookmarks.bat and copy the script into it.
  2. Change destination at SET FFBMBKUP=destination to the destination path of where you will save your bookmarks.
  3. Change xxxxx to the random string of 8 characters with the .default extension. To find this, search for bookmarks.html and look at the path. You should see something similar to: basuo6hm.default
  4. Save batch file
  5. Run batch file by double clicking on the file


REM #################################################################
REM Firefox bookmark backup script from www.locop.co.cc
REM #################################################################
@echo off
SET FFBMBKUP=destination
SET PROFILE=xxxxx
COPY /Y "%APPDATA%\Mozilla\Firefox\Profiles\%PROFILE%\bookmarks.html" %FFBMBKUP%
EXIT

Linux

  1. Modify the variables xxxx to your profile name path and FFBMBKUP to the destination path of where you will save your bookmarks.


#!/bin/sh
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Firefox bookmark backup script from www.locop.co.cc
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
xxxx=profile folder
FFBMBKUP=destination
cp ~/.mozilla/firefox/%xxxx%/ %FFBMBKUP
exit 0

0 comments:


LoCOP Powered by BlogSpot