Q. I am going to sell my laptop soon. Before discarding my system, I want to make sure that no one should able to use my personal data using any method (format do not work). Is there any open source software out there that can help me permanently erase my hard disk?
A. For erasing hard disk permanently, you can use standard dd command. But I recommend using shred command.
Erase disk permanently under Linux
Step # 1: First, download knoppix Live CD.
Step #2 : Boot from CD.
Step #3: How do I use shred command?
Shred originally designed to delete file securely. It deletes a file securely, first overwriting it to hide its contents. However same can be used to erase hard disk. For example your hard disk name is /dev/sda (SCSI hard disk) then type following command:
# shred -n 5 -vz /dev/sda
Where,
- -n 5: Overwrite 5 times instead of the default (25 times)
- -v : Show progress
- -z : Add a final overwrite with zeros to hide shredding
Command is same for IDE hard disk hda (PC/Windows first hard disk connected to IDE) :
# shred -n 5 -vz /dev/hda
Other options or Live CDs
Darik's Boot and Nuke CD is highly recommended for permanently erasing hard disk
Darik's Boot and Nuke ("DBAN") is a self-contained boot floppy (CD ISO also available) that securely wipes the hard disks of most computers. DBAN will automatically and completely delete the contents of any hard disk that it can detect, which makes it an appropriate utility for bulk or emergency data destruction.
Download page. Also don't forget to read - Frequently Asked Questions
DBAN works with MAC, PC (windows XP) and Linux system. Once you used shred or DBAN cd you can sell laptop :)
- Email FAQ to a friend
- Printable version
- Rss Feed
- Last Updated: 6-14-08

{ 0 comments… add one now }