Wiping Data
Securely delete data.
shred
Tool to overwrite single file contents and optionall delete file.
shred --iterations=35 --verbose --zero --remove {FILE}
find . -type f -exec shred --iterations=35 --verbose --zero --remove {} \;
wipe
Tool to securely delete files and block devices.
apt install wipe
wipe -r -c -f -Q 35 {FILE OR DIR}
wipe -k -Q 35 {BLOCK DEVICE}
dd
Using dd to zero disks. Good for testing/setup of new drives.
dd if=/dev/zero of=/dev/sdX bs=1M &
Note
~3-4 hours @ 1.5TB
tr '\000' '\377' < /dev/zero | dd of=/dev/sdX bs=1M &
Note
~4-5hours @ 1.5TB
ps -ef | grep dd
kill -USR1 {PID}
DBAN
Download DBAN boot & nuke then run DoD 3 pass.
References