GParted is just a pretty frontend. Mainly fdisk. Anyway, perhaps GParted has a bug executing summitz.
Anyway, let's just fix the bloody USB drive:
- Unplug USBvdrive.
- Reboot PC. I'm only saying this as a blanket to eliminate several possible other issues.
- Plug in USB drive
- Open Terminal
- Enter in terminal sudo -i
- Find out what letter the USB drive is with lsblk
. I will use sdX for the example.
- Enter in terminal umount --force /dev/sdX_
for each sdX number, eg: sdX1. Usually after dd'ing an ISO, there are 2, sdX1 and sdX2, the first of which should not mount at all, but gremlins.
- Enter fdisk /dev/sdX
fdisk starts...
- Enter g
in fdisk.
- Now enter n
.
It asks for a partition number. Press Enter
(default).
Then it asks first sector. Press Enter
(default).
Next, it asks last sector. Default is full size, so press Enter
.
- Now, after the output appears, enter w
.
- Wait until it exits...
You're back in the terminal's default shell...
- Power off the PC and remove the USB drive. I'm only saying this as a blanket to eliminate several possible other issues.
- Power on the PC, boot into your OS.
- Now plug the USB drive in and run sudo dmesg | tail -n 6 > mylog.txt
(this is for our reference).
Congrats. You now have a disk with 1 full partition, unformatted (so you can format in Windows, Linux, or Mac by following usual procedures).
When you plug in the drive, there is no way it will fail unless the drive or your distro (or distro's software) is broken. Let us know if there is a problem. Post the output of "mylog.txt" in code tags -- that's [ code]blah [/ code] w/o spaces before "code". Enjoy.