What is the most destroying command you can type in the Linux terminal?
You're viewing a single thread.
dd if=/dev/urandom of=/dev/sdx will overwrite every single byte of /dev/sdx with random data. Replace /dev/sdx with the drive you want to wipe. Optionally, specify a larger block size to speed it up more.
dd if=/dev/urandom of=/dev/sdx
Noted