Size: 6482
Comment:
|
Size: 5575
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 79: | Line 79: |
= GRUB restore = Now, if you want to move your system to a new harddisk or if you did something nasty to your GRUB (like, say, install Windows), You'll also need to reinstall GRUB. There are several very good howto's on how to do that here on this forum, so i'm not going to reinvent the wheel. Instead, take a look [http://www.ubuntuforums.org/showthread.php?t=24113&highlight=grub+restore here] (forum) or here: RecoveringUbuntuAfterInstallingWindows On the forum thread, there are a couple of methods proposed. I personally recommend the second one, posted by remmelt, since that has always worked for me. You can use the "loopback device" to mount this partition image, making it easy to read the old version of files and still keep your current version untouched. [http://www.trekweb.com/~jasonb/articles/linux_loopback.shtml Mounting disks with Linux's loopback device] by Jason Boxman |
ContentsBRTableOfContents(2) |
Backing up your system is an important thing for everyone to do. You never know when your hard drive will die, or some other disaster strikes. There are several methods listed here for you to choose from.
Archival backup
From the command line
Using the TAR command
Suitable for backing up your home directory. Open a terminal and enter the command:
tar cvfz output input
The compressed image created can be broken into smaller chunks for copying to removeable media using the split command.
More information can be found here: ["BackupYourSystem/TAR"]
Creating disc images using dd
Suitable for backing up entire disks. Open a terminal (in the examples you will need to replace hda with the partition you wish to backup).
Create a hard disk image:
dd if=/dev/hda1 of=/home/hda1.bin
Create a compressed disk image
dd if=/dev/hda1 | gzip > /home/hda1.bin.gz
Back up the MBR
dd if=/dev/hda of=/home/hda.boot.mbr bs=512 count=1
Restore MBR (from a Live CD)
dd if=/mnt/hda1/home/hda.boot.mbr of=/dev/hda bs=512 count=1
Backup a drive to another drive
dd if=/dev/hda of=/dev/hdb conv=noerror,sync bs=4k
The command:
dd -if /dev/hda1 > partitionimage.dd
will backup "/dev/hda1", the first partition on hda1. A whole drive (including the MBR) could be backed up using just /dev/hda as the input "file". Restoring is done by:
dd -if partitionimage.dd -of /dev/hda1
You can use the "loopback device" to mount this partition image, making it easy to read the old version of files and still keep your current version untouched. [http://www.trekweb.com/~jasonb/articles/linux_loopback.shtml Mounting disks with Linux's loopback device] by Jason Boxman
From the Desktop
Using Simple Backup Suite
Simple Backup Suite is a program that was created during the Google Summer of Code 2005. Using a familiar GNOME interface, you can specify how often it backs up, the destination, what to exclude and what to back up.
Simple Backup Suite also makes incremental backups, after creating the initial backup, only the files that have changed are backed up.
For more information see: BackupYourSystem/SimpleBackupSuite
UbuntuHomeBackup
Ubuntu/UbuntuHomeBackup
duplicity
BackupPC
["BackupPC"]
Incremental Backup
rsync
Rsync updates the copies the files that have changed and even then only transfers the parts of those files that have changed. That is useful for saving bandwidth when backing up over the network. For safety, transfer between two machines is done via SSH. Rsync is especially good for backing up home directories.
The command for transfering to a remote machine is:
sudo rsync --delete -azvv -e ssh /home remoteuser@remotehost.remotedomain:./backupdirectory
-z compresses the data --delete deletes files that don't exist on the system being backed up. Maybe you want this, maybe not. -a preserves the date and times of the files (same as -t), descends recursively into all directories (same as -r), copies symlinks as symlinks (same as -l), preserves file permissions (same as -p), preserves groups (same as -g), preserves file ownership (same as -o), and preserves devices as devices (same as -D). -vv increases the verbosity of the reporting process
See also
You might also want to check out these backup programs which will help you to make automated backups of your system:
[http://amanda.zmanda.com/ Amanda]
[http://www.partimage.org/ Partimage]
[http://www.mondorescue.org/ Mondo Rescue]
[http://www.rsnapshot.org/ rsnapshot]
[http://www.bacula.org/ Bacula]
Other wiki discussing various Linux backup techniques:
[http://www.nslu2-linux.org/wiki/HowTo/BackupYourLinuxBox NSLU2: back up your Linux box]
See the full discussion in these threads on the Ubuntu forums:
http://www.ubuntuforums.org/showthread.php?t=35087 Howto: Backup and restore your system! (very long thread; but all the good bits have (hopefully) already been summarized on this page.)
[http://www.debianadmin.com/backup-and-restore-your-ubuntu-system-using-sbackup.html "Backup and Restore Your Ubuntu System using Sbackup"] has nice step-by-step instructions (with screenshots) of using sbackup.
Systems like ["Subversion"] and [http://wayback.sourceforge.net/ Wayback] and [http://n0x.org/copyfs/ CopyFS] are useful when you want to see how things were a week ago -- they let you see *every* change to a file. (But they don't help when the hard drive fails, so they are complementary to these other forms of backup that only store occasional snapshots, but also survive hardware failures).
ContinuousBackups and HomeUserBackup and MigrateAndBackup have some interesting ideas about making backups completely automated. BackupOfPackageUserData and UbuntuDownUnder/BOFs/SimpleBackupSolution also still needs help.
What exactly does SessionBackup do?
CategoryDocumentation CategoryCleanup CategoryNeedsExpansion