Re: Recommendations for disk imaging?
Reply #1 –
I'd mount the source and destination locations from an iso or alternate partition and use rsync for regular backups, cd to the source root dir and:
# rsync -aHAXS --delete-after ./* /mount/point/of/your/backupdir
If you want to save a one time copy you could use # cp -a instead, the advantage of rsync is that it doesn't waste time copying files that already exist, but either of these methods would require some tweaks to make them bootable again on restoration because they are copies of the files and not images of the whole drive including partitions, and it might get more complicated if you have multiple partitions, like a separate /home, you'd have to think about what you need to mount and how you wanted it saved.
I've never tried this, but virtual machines offer some impressive whole file system compression options, if you got a cloned image then you could put it in a VM to make a VM image so you could boot in whenever you wanted but it would be compressed on your drive so take up even less space than a copy of the files, although of course you could compress those too, however that would make it slower to access them later.