How do I reformat an unmountable/unrecognised/unformatted USB drive?

2

How do I reformat an unmountable/unrecognised/unformatted USB drive? It will not mount or format on Windows Vista or OSX Tiger.

  • Disk Utility sees the hardware, but no partition to mount.
  • Testdisk does not see it at all.
  • USB Probe gives me the info:

    SM3252A Memory Bar, but externally it is a 4GB HP memory stick

  • fdisk dev/disk2 gives me:

    /dev/disk2 is not a character device or a regular file

  • & fdisk dev/rdisk2 gives me:

    Disk: /dev/rdisk2       geometry: 0/4/63 [0 sectors]
    Signature: 0x0
             Starting       Ending
     #: id  cyl  HD sec -  cyl  HD sec [     start -       size]
    ------------------------------------------------------------------------
     1: 00    0   0   0 -    0   0   0 [         0 -          0] unused      
     2: 00    0   0   0 -    0   0   0 [         0 -          0] unused      
     3: 00    0   0   0 -    0   0   0 [         0 -          0] unused      
     4: 00    0   0   0 -    0   0   0 [         0 -          0] unused      
    

I'd prefer to do this on OS X or the Unix shell, but any suggestions for a solution on Vista would be welcome too, or Linux for that matter.

Ivan

Posted 2011-10-05T16:18:22.677

Reputation: 29

If you can't format it, throw it in the trash and buy a reliable one.I say this since you attempt to format it. Does not make sense at all! – qwerty_so – 2015-03-03T13:28:34.273

3If Disk Utility sees it can't you create a partition and format it from there, or try the same with gparted? – Dennis – 2011-10-05T19:10:51.677

Might check out parted, http://www.gnu.org/software/parted/manual/html_mono/parted.html, command line *nix partition utility.

– jmreicha – 2011-10-05T19:16:29.593

I don't understand the point. You can buy a new one for under $10. – Daniel R Hicks – 2011-10-05T19:52:58.970

1Are you sure /dev/disk2 is the name of your usb device? What is the output of fdisk -l – Prahlad Yeri – 2013-03-02T14:37:51.233

i have recovered a LOT a nearly-going-to-the-trash-can flash drives using gparted on linux, simply by destroying the partition tables and rewritting them and then formatting. is this an applicable solution? – Lorenzo Von Matterhorn – 2013-04-04T02:16:00.273

Answers

1

Not sure, but can dd command be of any help?

http://hints.macworld.com/article.php?story=20050302225659382

Mirzhan Irkegulov

Posted 2011-10-05T16:18:22.677

Reputation: 1 134

1

in Windows Vista or higher, you can try to format it with diskpart.

Open a cmd.exe with administrative privileges and type "diskpart".

The command "lis dis" lists all your storage devices. If your USB stick is on the list (e.g. device number 3), you can select it with "sel dis 3".

Then you can reformat it with "clean", "create partition primary" and "format fs=fat32 quick".

For additional information see https://support.microsoft.com/en-us/kb/300415

Marin Althuis

Posted 2011-10-05T16:18:22.677

Reputation: 309