I want to keep a relatively fresh backup of my dual-boot laptop onto a 2tb NAS box that I connect to through NFS. I've done all my backups with dd so far and that works great if it's a one time backup only but an incremental, updated one won't work with that. Rsync seems to be the best tool for this but it's a bit complicated. So far, by reading the manual I've got this:
Code:
rsync -vaHAXi --stats --human-readable --progress --log-file=FILE /source /dest/backup
Does this look right? I'm not entirely sure about the -HAX and the link preservation. What I want to be able to do eventually is to be able to copy both the XP partition and the linux one onto the box, do incremental updates on them and if something breaks, be able to reverse the backup into the original partitions.
At the very least be able to fully copy the XP partition and it's data (binaries and configuration), the linux partition's binaries and configuration and if need be, somehow reinstall the particular distro and copy the binaries and confs into it.