show/hide this revision's text 2 kill disk, not just partition

Reformatted harddrives are easily recovered. You need at the least some kind of "secure format" program that overwrites the whole thing with random data a few times.

In linux, you can do this (where hdb1 hdb is the disk):

dd if=/dev/random of=/dev/hdb1
of=/dev/hdb

If you're paranoid enough, you can also drill a hole through it, or otherwise physically mangle the platters.

show/hide this revision's text 1

Reformatted harddrives are easily recovered. You need at the least some kind of "secure format" program that overwrites the whole thing with random data a few times.

In linux, you can do this (where hdb1 is the disk):

dd if=/dev/random of=/dev/hdb1

If you're paranoid enough, you can also drill a hole through it, or otherwise physically mangle the platters.