I've had two defective flash drives exactly like this. It is defective.
There is a possibility you might have some luck with Linux. (I was able to read and write data primitively to one of my defective flash drives.)
On Linux:
- Before inserting the flash drive, in the terminal, run the command
cat /proc/partitions
. This will list the drives detected by the system.
- Insert the flash drive. I'll let you be the judge of when the flash drive could be "ready to go", but waiting five seconds should suffice.
- Run the command
cat /proc/partitions
again. If something new showed up, that's a good sign, and Linux is recognizing the flash drive. Proceed below if this is the case. Otherwise, I'm sorry, that flash drive may be a goner. :(
Safe data recovery with Linux:
It looks like you want to salvage the data off of that flash drive. The command cat /proc/partitions
should have returned something that looks like this:
major minor #blocks name
8 0 250059096 sda
8 1 174558208 sda1
8 2 1 sda2
8 5 67108864 sda5
8 6 8388608 sda6
8 16 1953514492 sdb
8 17 1953512448 sdb1
8 32 1953514492 sdc
8 33 1953512448 sdc1
9 0 1953511288 md0
Remember the new name that appeared. For example purposes, I'm going to say that both sdc
and sdc1
appeared.
If there's a number at the end, that means a partition was detected. It's easier to get data off when a partition is visible.
This command will save the entire contents of the partition sdc1
into a file called fdd_backup.img
in the directory that the terminal is currently working in (probably the home directory, if you didn't cd
):
sudo dd if=/dev/sdc1 of=fdd_backup.img conv=noerror
The output should be blank. For how long? It depends on how large the partition is and it might also depend on how corrupted the partition is.
dd
will say how the data transferred, and when you return to the terminal, that's when execution has completed.
Okay, now you can copy off fdd_backup.img
. Unfortunately, this is where my knowledge stops. I don't know what to tell you to help you recover this image, but I hope that you could get here so that you have something at least.
It sounds like the drive is dead. The last thing you can do is to break the case, and hook up the drive using a normal connection, this at least gets the data off it. – Ramhound – 2012-05-31T16:18:27.610