From #myoss @ freenode.net
<kaeru> what do linux people do for full backups?
<kaeru> freebsd there is dump/restore
<kaeru> do people use that for ext3 still or is there a better way?
<sweemeng> kaeru rsync?
<kaeru> I mean disk level snapshots
FreeBSD ufs2, as what we use in Inigo's Gambit, can easily create snapshots of a live filesystem using dump. However, ext2/ext3 used widely in Linux does not have such feature (as far as I know). But for those who want such feature, fear not, there is a feature in LVM called snapshots which more or less provide a similar thing.
Fedora/RHEL/CentOS users might be familiar with the term LVM as the 3 distros uses LVM by default in their default installation partitioning scheme. Some people think LVM by default is a painful thing, but to me, its the opposite (until you need to get it to work with dualboot windows+linux env).
Back to the topic, here's a little guide for those who want to do a full disk image backup using…