Linux wipe disk(s)
Remember: you’re on your own, use with care!! 30 runs of pseudo random data should be safe enough for a rented server you’re going to return soon… # replace sdX with the device you want to wipe for n in `seq 30`; do dd if=/dev/urandom of=/dev/sdX bs=8b conv=notrunc; done& pid=$! Read more…