Ubuntu – Startup Disk Creator fails to erase disk

dbusstartup-disk-creator

Before extracting an ISO image onto a USB device using Startup Disk Creator, when I try to erase the USB device using the same software, I always get the following error:

Startup disk creator error

I have tried to erase various USB devices without success, so I believe this is not a device-specific problem.
I see that a bug on this has been filed on launchpad, though an alternative/solution/word-around has not been suggested.

Is there a way to solve this error, without using other softwares to erase disk?

System specifications:

  • Ubuntu 12.10
  • Startup Disk Creator 0.2.4

Best Answer

Try this. Insert your USB flash drive, and just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

dmesg | tail

enter image description here

The sdb is your USB drive, yous might be different

Unmount your USB drive using the following command:

sudo umount /dev/sdx

Format the drive using the following command: (this would format it as FAT32)

sudo mkdosfs -F 32 -n 'Label' -I /dev/sdx

make sure that you replace the x with your device id.

Related Question