I have to securely wipe all data from a hard drive as I'm going to give it away. I plan on using the dd under linux utility to do so, after a little bit of research, I found two ways of doing so:
dd if=/dev/zero of=/dev/sdeWill overwrite the WHOLE hard drive with 0 characters, this technique apparently makes data easier to recover, althought still hard to pull of.dd if=/dev/urandom of=/dev/sdeWill overwrite the WHOLE hard drive with random data.
Which one of these two technique is the best? Would overwriting the whole hard drive with random data put to much strain on it?