/ Published in: Bash
A simple method of clearing the data of a hard drive (writing zeros all over it).
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
dd if=/dev/zero of=/dev/sdb bs=4096 # this will write zeros all over the sdb device.