1
1
I'm moving large amounts of data from one external drive to another larger one. The files are important and the smaller drives need to be cleared and reused (HD camera). Is there some utility for moving files and verifying their integrity?
I've been using this command
find . -type f -exec md5 '{}' \; > md5list.txt
in the terminal to create a list of MD5s for each file then using diff
to compare the two. However, I am moving 320GB at a time, which takes a while by itself. Computing the checksums takes another hour or so. It would be much more efficient to do this on the fly, during the copy. I'm just hoping someone has already written the software...
I'd like a GUI for this (so I can delegate). I see there are multiple ones. Which is the best? – jedavis – 2011-01-08T19:18:41.287
Not a clue. I don't actually run OS X (and I've never used a GUI for rsync). – Ignacio Vazquez-Abrams – 2011-01-09T00:29:24.857
This is not correct or rather taken out of context. Rsync only verifies that the transfer was done correctly. In the case of a local copy there is no transfer over the network, so the actual file-writes are not verified. – user329023 – 2014-06-03T15:40:35.800