formats

Securely Wipe Hard Drive in Linux

Published on July 3, 2011, by + in linux, sysadmin.

Securely Wipe Hard Drive in Linux | To wipe a hard disk down to zeros, use the dd command. $ sudo dd if=/dev/zero of=/dev/sdX bs=1M Where /dev/sdX is the drive you want to zero out. Be extremely careful – there is no undo! For example, this zeros out the specific disk “/dev/sdf” on my system: stmiller@brahms:~$ sudo dd if=/dev/zero of=/dev/sdf bs=1M This

Home Posts tagged "erase"