Free Software to Securely Erase a Hard Drive

7 Antworten [Letzter Beitrag]
wpurcell
Offline
Beigetreten: 11/07/2009

Is there a free software program to securely erase/wipe a hard drive?

onpon4
Offline
Beigetreten: 05/30/2012

The command is "shred". It's part of coreutils; a basic command of the system.

If you want a graphical frontend, you can install the nautilus-wipe package to add "wipe" menu entries to GNOME's file manager.

J.B. Nicholson-Owens
Offline
Beigetreten: 06/09/2014

name at domain wrote:
> Is there a free software program to securely erase/wipe a hard drive?

I understand DBAN (https://www.dban.org/) will do that job in freedom.
You can get source code under a Free Software licenses (LGPLv2 and
GPLv2, according to the Sourceforge.net summary) from
http://sourceforge.net/projects/dban/

wpurcell
Offline
Beigetreten: 11/07/2009

Thanks opon4!

davidnotcoulthard (nicht überprüft)
davidnotcoulthard
teodorescup

I am a member!

Offline
Beigetreten: 01/04/2011

I prefer to zero it because I use full disk encryption but if you don't
you can use:

cryptsetup -c aes-xts-essiv:sha256 -y -s 512 luksFormat /dev/sdx1
cryptsetup luksOpen /dev/sdx1 empty
dd if=/dev/zero of=/dev/mapper/empty

--
I use: trisquel.info | ceata.org | fsf.org | riseup.net | duckduckgo.com | eff.org | h-node.com | torproject.org | airvpn.org | flattr.com | skepdic.com |

leny2010

I am a member!

I am a translator!

Offline
Beigetreten: 09/15/2011

If it is for HDD disposal a friend who works in the software end of electronics design for military and security customers uses a BBQ and doesn't stand downwind of it while it's cooking. YMMV but drive firmware is so sophisticated these days it's hard to be certain of software tools unless you started out with full disk encryption.

treforest
Offline
Beigetreten: 11/17/2014

I tend to use ATA secure erase through hdparm, see https://ata.wiki.kernel.org/index.php/ATA_Secure_Erase. Also try dban.org (not sure what licence).