Usually my process is very… hammer and drill related - but I have a family member who is interested in taking my latest batch of hard drives after I upgraded.
What are the best (linux) tools for the process? I’d like to run some tests to make sure they’re good first and also do a full zero out of any data. (Used to be a raid if that matters)
Edit: Thanks all, process is officially started, will probably run for quite a while. Appreciate the advice!
Usually, I use
shred
:shred -vfz -n 2 /dev/device-name
-v
: verbose mode-f
: forces the write permissions if missing-z
: zeroes the disk in the final pass-n 2
: 2 passes w/ random data