Difference between revisions of "Wipe your Hard disk"

From Nocrashwiki
(Created page with "# shred -vfz -n 100 /dev/hda")
 
 
(One intermediate revision by the same user not shown)
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. (-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.