Tuesday, May 21, 2013

Use Knoppix to Wipe a Hard Drive


Wiping the hard drive is a necessity to avoid any chance of having personal data retrieved after you sell or dispose of your hard drive. The following procedures use the Live Linux CD Knoppix to wipe a hard drive.

  1. Boot into Knoppix.
  2. Start the "Terminal" window.
  3. Display a list of hard drivers currently on your system. It should be sdX or hdX where X is a letter.
    # sudo sfdisk -l -x
  4. Start the wiping process.
    # sudo shred -vfz -n 100 /dev/sdX
  5. Let the program run to completion (can be several hours).
References:
  1. Knoppix is a Live Linux CD based on Linux GNU/Linux
    http://knoppix.net/
  2. How to Use Knoppix to Wipe a Hard Drive
    http://www.ehow.com/how_6246449_use-knoppix-wipe-hard-drive.html
  3. shred - overwrite a file to hide its contents, and optionally delete it
    http://linux.die.net/man/1/shred