I have a 1TB USB external drive that I need to return for warranty and need a fast way to hide my data in case anyone tried to recover data from it!
I know about dd
, shred
etc... but I'm afraid (I'm not totally sure about the amount of time needed actually) it will take too long to finish and I need something fast!
What's the fastest option I have to do it?
Thanks
cat
faster thandd
? – mchid Apr 26 '22 at 18:19Disks
utility – Frank Apr 26 '22 at 18:44shred -n 1 -v <your disk here>
, and see if it gives any indication how long that will take.-n 1
tells it to only overwrite once (since you don't have much time) and-v
is for "verbose", so it will show progress. – Esther Apr 26 '22 at 18:50/dev/urandom
(see the tips and tricks section for dd). – mchid Apr 26 '22 at 18:58