Over the years your archival HDDs are susceptible to bitrot. You've to re-write them on regular intervals to prevent that. You can use dd for that --
dd=/dev/sdX of=/dev/sdX bs=1M conv=notrunc iflag=fullblock
This is even resilient to power failures (I tested that over a VM).