Difference between revisions of "Wipe your Hard disk"

From Nocrashwiki
 
Line 1: Line 1:
 
shred -vfz -n 100 /dev/hda
 
shred -vfz -n 100 /dev/hda
  
Here /dev/hda is my whole hard disk. And I am asking shred to make (-n) 100 passes by overwriting the entire hard disk with (-z) zeros. And shred program (-f) forces the write by changing the permissions wherever necessary.
+
Here /dev/hda is my whole hard disk. And I am asking shred to make (-n) 100 passes by overwriting the entire hard disk with (-z) zeros. (-f) forces the write by changing the permissions wherever necessary.

Latest revision as of 18:12, 15 September 2010

shred -vfz -n 100 /dev/hda

Here /dev/hda is my whole hard disk. And I am asking shred to make (-n) 100 passes by overwriting the entire hard disk with (-z) zeros. (-f) forces the write by changing the permissions wherever necessary.