I'm making backups of compressed data (using ZPAQ), some compressed archives are large (50 GiB)
I was just going to use sha3sum -a 512
, for example:
sha3sum -a 512 "Total_DOS_Collection-RELEASE#17-[1981-1995].zpaq"
Then storing the value and later periodically checking if the value of the backup is still the same
Then I started wondering if there would be a better/safer/more appropriate/effective method...
Thought checking if the SHA3-512 sum of a given file was still the same or not would be a goood solution to my problem, was I wrong and should use crc32 instead?
If I detect corruption on, for example, a backup on a Blu-Ray Disc, I would grab another copy of a given backup which is still intact and burn a new Blu-Ray Disc. My backups consists of ZPAQ compressed archives on the cloud, on local hdds (EXT4) and Blu-Ray Discs
– Charles D. Ward Oct 24 '19 at 19:57b2sum
is too slow, give this a try (and only turn tob2sum
if the sha3 utility is too slow for you). – SEJPM Oct 25 '19 at 11:32