I have a USB drive that I accidentally partitioned when trying to put Ubuntu on it. It's a 16 GB Kingston flash drive but it is now split to two partitions, 7.30 GB each.
How do I combine the two partitions into one? I have tried Disk Management in Windows but no luck.
14 Answers
You can do this by using diskpart on Windows:
- Open an elevated command prompt.
- Run
diskpart list disk- Note the disk number that corresponds to your USB drive (it should be obvious going by size)
select disk Xwhere X is the number from step 4list partition- There should be two, numbered 0 and 1, each about 7 GBselect partition 0delete partitionselect partition 1delete partitioncreate partition primaryexit- Exit Command Prompt (type
exitor just close the window) - In Windows, go to Computer(or This PC for Windows 10) and try to open the disk. It will ask you to format it.
- Format it with the default settings and give it a name if you want.
It should now a single, unified partitioned drive.
14Try MiniTool Partition Wizard or choose a program from this list.
Just open the drive with GParted (included on Ubuntu; make sure to boot it from another device than the USB drive) and click "Create new Partition Table". Select MS-DOS and create one big FAT32 partition to fill the drive.
1I can recommend rufus. When you have a USB stick with multiple partitions attached, it will automatically select the USB-Stick, detect that it has multiple partitions and you can format the stick safely (select defaults - non-bootable, MBR).
Install with Chocolatey: choco install rufus