How To Rapidly Clean / Wipe Hard Disk Drive
By Angsuman Chakraborty, Gaea News NetworkSunday, April 6, 2008
How to overwrite your hard disk with random characters
dd if=/dev/random of=/dev/sda
How to overwrite your hard disk with zero characters
dd if=/dev/random of=/dev/sda
Replace sda / hda with your hard disk identifier.
Either of the procedure requires the system has Linux installed or accessible from Linux operating system. You can use a Live Linux distribution like Ubuntu Live CD or System Rescue CD.
May 3, 2010: 7:32 pm
Should it not be this command for writing a har drive with zeros ? dd if=/dev/zero of=/dev/sda |
partho |
March 18, 2009: 4:00 pm
there is one more “if” input file than /dev/urandom it is dd if=/dev/zero of=/dev/sd{a,b…z} this is by far the most destructive method. yes it does a 0 bit bucket format destruction of hard drive data and cannot even be recovered even by the most advanced method of data recover using magnetic resolution and all. and to make this even safer? just incase you have a mirror stripping 5 raid disk? try the shred command. |
Jason