I like to clone a whole partition or a whole hard drive onto a larger external disk but like to create a sparse file. I often use dd
for cloning, but it doesn't support sparse files. As a workaround I used something like:
cp --sparse=always <(dd if=/dev/sda1 bs=8M) /mount/external/backup/sda1.raw
However this is a little too tricky for my taste and doesn't allow me to resume the process if aborted. It is funny that there is a NTFS tool for this (ntfsclone
) but no such tool exists for the native file systems of Linux (EXT2-4).
Is there some better tool for this, e.g. a dd
variant with sparse support?
I do not look for some proprietary software for disk backups but simply want to make a sparse clone copy which I can mount as loop device if required.
cp
, it never occurred to me that you could sparse-copy a disk image. I always just compressed them if I needed to save space. Now why is that in a question not an answer? – Caleb Jul 20 '11 at 20:05