1

My flash drive did not eject correctly from a Linux machine, (Fedora 12, I think) and now I can't get any machine to recognize it. I've tried Windows and Linux machines. (I don't have access to a Mac) It doesn't make a sound when I put it in. It doesn't show up in My Computer or Disk Management. I'm not too familiar with Linux, but I look in a file viewer and disk manager, and didn't see it anywhere.

I was told there might be some special programs that might be able to see it, but I wasn't given names or anything. I'm thinking the drive is dead, but hoping its not.

Any help would be greatly appreciated.

ZeverMX
  • 11

1 Answers1

0

if you have the windows machine with you you can check it whether is it getting detected in device manager and disk management if its there then its alive and just need the proper formatting. On your linux system Open terminal from the taskbar. Gain root privileges with the following command:type #su root Create a new directory and mount the flash drive onto that directory with the following command: #mkdir /mnt/flashdrive

mount /dev/sda1 /mnt/flashdrive

to check content type #ls /mnt/flashdrive

try and check whether its working or not?

Rohit
  • 120