How does Darik's Boot and Nuke work?

3

1

How does oft-recommended hard drive scrubber Darik's Boot and Nuke actually work?

Soup

Posted 2011-01-21T16:46:27.957

Reputation: 197

Answers

3

DBAN is simply a Linux-based bootable image that can be run from floppy, CD/DVD, or USB drive (and probably more) which runs in system memory from the media. Once started, it gives you the option of overwriting disk content with multiple different methods, including pseudo-randomly generated numbers, the Gutmann method, and the DoD methods. For the most thorough wipe the Gutmann method is preferred, but has the longest runtime (35 passes).

As opposed to a simple format which is recoverable, DBAN will actually overwrite each sector on the disk with gibberish. The amount of times and type of data depends on which method is selected as described above.

John T

Posted 2011-01-21T16:46:27.957

Reputation: 149 037

The Gutmann method has been obsolete for many years. A few passes of random data is the best choice these days.

– user1686 – 2011-01-21T19:55:18.500

@grawity just for the paranoid ;) – John T – 2011-01-21T20:34:38.200

1The paranoid will want to read the quote in which Gutmann himself says the same thing. – user1686 – 2011-01-21T21:48:21.077

0

I use it at work and in a nutshell it writes the the hardisk with all 1's and then all zero's (It is the standard for the DoD???) and depending the option you choose it can do this a few times or several time rendering any info on the disk irretrievable. I work in government and it ensures that any PC that we have replace can be resold etc... with out the fear of any info being left on it.

danbo

Posted 2011-01-21T16:46:27.957

Reputation: 658