How to erase hard drives (shred, dd)
By jeltsch on Sun, 01/25/2009 - 22:47You could write zeros to the whole hard drive
dd if=/dev/zero of=/dev/hda
For newer versions of dd, you can monitor the progress:
dd if=/dev/zero of=/dev/hda status=progress