1. First create bootable Linux cd or usb stick.
2. Open terminal and see if you have shred installed by typing: which shred
3. If it not installed you can install it with: apt-get install coreutils
4. Figure out which hard drive you want to erase: sudo fdisk -l
5. Wipe out disk (/dev/sda is the name or location of the disk): sudo shred -vfz -n 10 /dev/sda5
v: show progress
-f: change permissions to allow writing if necessary
-z: add a final overwrite with zeros to hide shredding
-n: overwrite N times instead of the default (3)
So this would overwrite /dev/sda5 ten times.
Ei kommentteja:
Lähetä kommentti