This blog is now hosted at consciou.us

Thursday, February 18, 2010

Purging a hard drive in Linux





There is a lot of information available out there on purging hard drives; this is the lower-security, quicker way to do it.

dd bs=1M if=/dev/zero of=/hard/drive/device

This will overwrite the drive with zeroes.

for more security, but a longer process:

dd bs=1M if=/dev/urandom of=/hard/drive/device

Which will overwrite the drive with random data.

No comments: