Difference between revisions of "Wipe your Hard disk"

From Nocrashwiki
(Created page with "# shred -vfz -n 100 /dev/hda")
 
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.

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. And shred program (-f) forces the write by changing the permissions wherever necessary.