I'd just like to know if it's safe to zero out a thumb drive? I thought I had read before that zeroing out can damage flash cells. Is this true?
-
Yes, it's called secure erase like for SSD's. It'll just wear out the drive a bit faster than normal that's all in return for all data erased (non-recoverable) and speeds brought back to default.
Use this: http://hddguru.com/software/2006.04.13-HDD-Wipe-Tool/ -
Thanks for the helpful answer.
I use the linux 'dd' command though to zero out drives.
-
But it isn't really necessary. Trying to recover / undelete data off of flash memory is pretty much impossible. Yes, the memory cells may still contain the 1's and 0's of your data. But without some kind of file table to actually map out those bits of data into readable files, that data might as well be useless. -
One could compare it to ripping out the the table of content from a book. It will be harder to find a specific chapter or file, but it does not add any security against someone who is willing to read the whole book/medium to find what he's looking for.
Code:dd if=/dev/zero of=/dev/sdX bs=512 count=1 # replace X with the flash drive's device name
Actually the only way to reliably delete a flash medium without wearing it too much or even destroying it completely is to flash the controller's memory of the flash cell contents. That's what the TRIM command "secure erase" does. For any flash medium without TRIM support the only alternative with similar effect would be to reflash the controller.
For secure single-file deletion on HDDs there is the "wipe" tool which should be available in every mayor Linux distribution. -
tilleroftheearth Wisdom listens quietly...
Very easy to recover data from flash drives! Even if they have been formatted.
While I wouldn't recommend zeroing flash drives on a regular basis (because the nand they contain is sub-par (write/erase longetivity-wise) compared to what SSD's offer...) if you are giving/selling this away, it is highly recommended to overwrite every available cell you can to protect any sensitive data it contained (ever).
Good luck. -
Like with hdd's, I simply use
Code:sudo dd if=/dev/zero of=/dev/XXX bs=256k
Is it safe to zero out a thumb drive?
Discussion in 'Hardware Components and Aftermarket Upgrades' started by talin, Dec 4, 2011.