im looking to use dd to back up my whole hard drive regularly but it takes around 1.5 hours and want to know if there is a faster way to back up.

possibly just by updating the bytes which are different.

link|improve this question
1  
you ought to look at rsync – Sathya Jan 8 '11 at 5:12
feedback

1 Answer

The thing is, finding out which bytes have changed will involve reading both devices and comparing each byte. Doesn't sound very fast this way either.

If you're ready to give up 'backing up the entire hard drive' and to instead do the backup at the filesystem level:
1. rsync
2. rdiff-backup

AFAIK, these programs use some attributes like modification time and size which are available at the FS level. So they should speed things up a LOT (especially if most of your files do not change)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.