A simple backup scheme using rsnapshot

From Gentoo Wiki
Jump to: navigation, search

These days, with digital storage cheaper than ever, and people accumulating increasing amounts of invaluable digital data (e.g., family videos), there is no excuse not to have a backup regime in case of hardware failure.

This article describes a simple automated backup scheme using the tool rsnapshot, which is based on rsync. rsnapshot makes a specified number of incremental backups of specified filetrees, using hard links to save space on the backup medium.

Contents

Setup

Preliminaries

File/etc/fstab
/dev/disk/by-label/backup    /mnt/backup    ext4    noatime,nodiratime,noauto    0 0

In this example, the filesystem is ext4, identified by the label backup, and attaches to a special mount point /mnt/backup. The noauto option means that this backup filesystem will not be mounted by default.

Cron scripts

Create cron scripts for the different backup intervals:

File/etc/cron.daily/rsnapshot.daily
#!/bin/sh

echo "### RSNAPSHOT DAILY ###"
mount /mnt/backup && rsnapshot -c /etc/rsnapshot.d/daily.conf daily || echo "Backup failure"
umount /mnt/backup
echo
File/etc/cron.weekly/rsnapshot.weekly
#!/bin/sh

echo "### RSNAPSHOT WEEKLY ###"
mount /mnt/backup && rsnapshot -c /etc/rsnapshot.d/weekly.conf daily || echo "Backup failure"
umount /mnt/backup
echo
File/etc/cron.monthly/rsnapshot.monthly
#!/bin/sh

echo "### RSNAPSHOT MONTHLY ###"
mount /mnt/backup && rsnapshot -c /etc/rsnapshot.d/monthly.conf daily || echo "Backup failure"
umount /mnt/backup
echo
Note
These scripts must be executable.

rsnapshot configuration files

Set up the rsnapshot configuration files referred to in the scripts above.

Note
rsnapshot configuration files are tab delimited.
Note
Filetree specifications are in rsync format. See the rsync man page for details.

First a base configuration:

File/etc/rsnapshot.d/base.conf
# Default config version
config_version	1.2

# So the hard disk is not polluted in case the backup filesystem is not available
no_create_root	1

# Standard settings
cmd_cp			/bin/cp
cmd_rm			/bin/rm
cmd_rsync		/usr/bin/rsync
link_dest		1

# For convenience, so that mount points can be taken as backup starting points
one_fs			1

# Store all backups in one directory per machine
# A useful alternative may be to create a separate directory for each interval
snapshot_root   /mnt/backup/

Then, here are sample configuration files for daily, weekly and monthly backups:

File/etc/rsnapshot.d/daily.conf
include_conf   /etc/rsnapshot.d/base.conf

# Daily (30 increments)
interval        daily                   30
backup		/home/me/		localhost/
File/etc/rsnapshot.d/weekly.conf
include_conf   /etc/rsnapshot.d/base.conf

# Weekly (12 increments)
interval	weekly                  12
backup		/etc/			localhost/
backup		/var/db/pkg/world	localhost/
backup		/boot/			localhost/
File/etc/rsnapshot.d/monthly.conf
include_conf   /etc/rsnapshot.d/base.conf

# Monthly (6 increments)
exclude		/home/me/
exclude		/tmp/**
exclude		/usr/portage/distfiles/**
exclude		/boot/
exclude		/home/scratch/**
exclude		/var/tmp/ccache/**
interval	monthly                 6
backup		/			localhost/

In these files, the second argument of backup specifies a container directory for the backups, usually referring to the machine (in this case, localhost). This can be changed to any name of your choosing.

Restoration

To restore the localhost backups specified above, we would use

root # mount /mnt/backup
root # rsync -a /mnt/backup/localhost/monthly.0/ /mnt/myroot/
root # rsync -a /mnt/backup/localhost/weekly.0/ /mnt/myroot/
root # rsync -a /mnt/backup/localhost/daily.0/ /mnt/myroot/

where /mnt/myroot is the mount point of the fresh root filesystem. In the paths above *.0 refers to the latest increment.

Possible improvements

It is also possible to make remote backups via rsync or SSH -- see the rsnapshot man page for details.

Links

Personal tools
Namespaces
Variants
Actions
Gentoo Websites logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki new! Get Gentoo!
Navigation
Toolbox
Categories