mkogg.py: Fix 'self.get_mp4_metadata(self, source)'
[blog.git] / posts / rsnapshot.mdwn
1 [rsnapshot][] is a backup utility that uses [rsync][] to backup files
2 over the network.  Backups to my external [Btrfs][] drive were
3 dragging, with a lot of time and processor power spend running `cp`
4 and `rm`.  With a [COW][] filesystem like btrfs, this is wasted
5 processor time and disk activity, so I migrated to using Btrfs
6 snapshots instead.  Walter Werther has a [good write up][WW].  The
7 idea is to configure rsnapshot to use scripts that wrap `btrfs`
8 instead of your system's `cp` and `rm` programs.  Walter's put the
9 relavant script on [GitHub][]: [cp][] and [rm][].
10
11 [rsnapshot]: http://www.rsnapshot.org/
12 [rsync]: http://rsync.samba.org/
13 [Btrfs]: https://btrfs.wiki.kernel.org/
14 [COW]: http://en.wikipedia.org/wiki/Copy_on_write
15 [WW]: http://wwerther.de/2011/10/migrate-rsnapshot-based-backup-to-btrfs-snapshots/
16 [GitHub]: http://github.com/
17 [cp]: https://gist.github.com/1306185
18 [rm]: https://gist.github.com/1306189