I mean really erase. In a secure way.

(It's Ubuntu)

UPDATE: Ok, "shred -vfz -n 10 /dev/hda" looks like what I was after.

link|improve this question

59% accept rate
feedback

closed as off topic by casperOne Jan 25 at 19:28

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

15 Answers

up vote 36 down vote accepted

Use the "shred" command:

Suppose I want to erase all the data on my hard disk, then I boot using a LiveCD like Knoppix and open a shell and type the following command:

shred -vfz -n 10 /dev/hda

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

10 passes is probably way overkill, I'm not aware of a single confirmed example of someone recovering data from an erased disk even after 1 pass. Its a time-paranoia trade off.

link|improve this answer
3  
Actually, -z -n10 overwrites 10 times with data from /dev/urandom, and then once with zeros. – Steve Jessop Sep 17 '08 at 17:53
Modern drives already use most of the tricks the spooks would use to recover data, just to get their enormous capacity. – Mark Ransom Apr 8 '09 at 19:18
1  
Apple's Disk Utility offers 1, 7 or 35 overwrites. They claim 7 is what the US Dept of Defence use and I guess they offer 35 for anyone super paranoid (; – drfrogsplat Feb 3 '11 at 1:56
feedback

Looked into http://www.dban.org/ ?

link|improve this answer
feedback

GNU Shred will wipe everything. Boot from a livecd and run sudo shred /dev/sda (or whatever hard drive you want wiped is). This will even protect from magnetic analysis of the disk.

There are various commercial tools that also do this, but shred is free.

link|improve this answer
feedback

A single overwrite will do it (Heise Security)

There's a propability of 56% that one single bit can be correctly recovered. It's just 6 % points better than guessing!

One byte has the propability of 0,97% to be recovered. Calculate for yourself what does this means for a 3 MB word document...

A nice comment were posted in the German Heise Forum:

This recovery method would be as effective as guessing, but guessing would work even if the data haven't even written down yet!

So: Don't panic! :)

link|improve this answer
1  
Note that if a bit can be recovered with 56% accuracy, and the threat model is that an attacker believes that a particular file was located on the disk, then a single overwrite allows the attacker to prove this hypothesis with some confidence depending on the size of the file and the likelihood that in fact it was some other, very similar file. That's not the same as data recovery, but it's something that "secure erasure" should prevent. – Steve Jessop Apr 24 '11 at 11:44
feedback

Depends on the threat model.

If you're only worried about someone reading bits off the disk in the usual way, then overwrite it once with zeros.

If you're concerned about physical analysis of the platters, use GNU shred. And look into full-disk encryption next time.

If you want to be absolutely sure that no data can be recovered, then nothing beats smashing the platters with a hammer and throwing the pieces in an incinerator. Only destruction ensures that no future advance in hard disk forensics will allow the "history" of the drive to be recovered.

link|improve this answer
feedback

dd if=/dev/zero of=[raw disk device] bs=512

Some authorities suggest that you need to do this as many as 7 times to really be sure, but if you want to eBay a hard disk, once ought to be sufficient in my opinion.

Be sure you use the correct disk device! You don't want to do that to any disk that has anything important on it!

link|improve this answer
/dev/urandom is also a good one ;-) – dsm Sep 22 '08 at 16:47
yeah, but /dev/zero takes less CPU. – nsayer Oct 27 '08 at 21:05
/dev/urandom should have a lot of entropy and this makes it slow. I can read only 4.5 MB/s from it. – Cristian Ciupitu Mar 16 '09 at 17:56
If you do that, the disk will just flip a bit that says "sector zeroed out, move along", because that's faster. The data is still there, if you can read the surface or get the firmware to cooperate. Doing that seven times does not fix that flaw. – Tobu Nov 19 '11 at 22:23
feedback

Thermite, or a industrial metal shredder. Drilling some holes in it with a power drill may do in a pinch.

link|improve this answer
feedback

shred will not wipe everything if you are using a journalling filesystem. Even manpage for shred mentions it:

CAUTION: Note that shred relies on a very important assumption: that the file system overwrites data in place. This is the traditional way to do things, but many modern file system designs do not satisfy this assumption. The following are examples of file systems on which shred is not effective, or is not guaranteed to be effective in all file system modes: ...

link|improve this answer
3  
I think the warning applies only if you are trying to erase individual files. For erasing the entire device, there's no problem. – Ville Laurikari Sep 18 '08 at 4:40
This message seems to be incomplete - the list of file systems is missing. – Jonathan Leffler Oct 5 '08 at 6:41
1  
Full text: linux.die.net/man/1/shred – Tim Apr 8 '09 at 19:18
feedback

If you want something totally secure, you need to physically destroy the drive.

If you want to use the drive again, use DBAN. It can erase data using a USA department of defense standard.

link|improve this answer
feedback

A large magnet plus a sledgehammer is the most secure way :)

link|improve this answer
feedback

dd if=/dev/zero of=/dev/sda bs=512 from a LiveCD. Lather, rinse, repeat up to 35 times if you want to be as secure as the Department of Defense.

Then, when you're done with it all, shoot it a few times with a nail gun, go Office Space on it, and then throw it into a volcano.

link|improve this answer
feedback

shred -vfz -n 100 /dev/hda

link|improve this answer
feedback

In the past there was enough redundancy on the disc that after one pass of erasing it was possible (using special equipment) to recover data. Probably nothing to worry about for most people but if you had good reason to think people would really want your data then multiple passes were reccommended.

As I understand it, with the densities of modern disks, there really isn't much redundancy and after a single pass there's not really any detectable data left.

link|improve this answer
feedback

As others have suggested, DBAN is good. Anything which overwrites the entire contents of the disc, just once, is good enough.

There is no evidence that, on a modern disc, there is ANY way of getting anything back that's been overwritten once.

link|improve this answer
feedback

The Register has found the perfect tool for the job...

:->

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.