21

Tip #829   Wipe deleted files with dd

Give the finger to forensics.

dd if=/dev/zero of=DELETEME; sync; rm -f DELETEME

will zero all free space on your partition. (/dev/random can be used if you're paranoid)
 
  • TAGS:
  • dd