Hey folks,
I'm donating a few older servers to charity and want to wipe the arrays. I usually go to DBAN for this (as the drives are donated too), but it is failing to run on all these servers - so gave up and using Ubuntu boot disk instead which is running perfectly...
So, one of the servers has 6TB of 7.2k SAS drives. I'd usually run this where I cant get DBAN to work:
sudo shred -n 1 -v -z /dev/sda
That will fill the whole drive with random data fully, (one pass), and then fill with zeros (second pass). I think that's correct anyway.
The data its self isn't really that important or a worry to the company if found. But we should make a decent attempt in wiping it. So I just want to do a reasonable wipe to make a 'quick effort' rather than 'best effort'... and we don't want to wait days and days for the process to finish. Being a 6TB array (in raid 0), it would take a long time... So, how secure is running this instead?
sudo shred -n 0 -v -z /dev/sda
That would do no first random pass, and will just fill the drive with zeros right?
Is that pretty much cleaned? Or would getting the data bac be trivial?
I imagine zeros, rather than random and then zeros, would be much faster - and still pretty secure wipe - but want to check as no experience on the recovery side of what is possible...
So, use -n 1, or -n 0 would be fine?
Best,
Jim