2

I am having a strange issue on Ubuntu 22.04, and can't find any helpful information on it.

I have a 16GB USB flash drive. I want to use it with OPL on my Playstation 2 and this requires the partition table to be MBR. The Disks app in Ubuntu tells me that it is currently GPT. According to various posts and websites you can "convert" between the two using gdisk and fdisk, so what I have done is, use gdisk to zap the GPT and then used fdisk to create a new DOS partition table. As I understand it the DOS partition table is the same as MBR.

And indeed, after doing this, gdisk tells me that the partition on the flash drive is MBR only. However, the Disks app in Ubuntu still says it GPT. (GUID partition table to be precise.) It also is not read by my Playstation 2.

I have tried messing around in gdisk and fdisk trying pretty much everything and nothing changes the outcome. Am I missing something? Why does gdisk tell me one thing and the Disks app another?

I am still a Linux noob, so detailed step-by-step instructions would be appreciated.

Here's what the Disks app and gdisk look like:

Here's what the Disks app and gdisk looks like

user68186
  • 37,461

2 Answers2

3

Use the Disks App

  1. Insert the USB drive in your computer.
  2. Open the Disks app.
  3. Select the USB Drive from the left panel. Warning: All the data in the selected disk will be erased permanently. If you select the wrong disk, you may lose important data or everything in your computer.
  4. From the three dot menu select Format Disk...
  5. Under the Partitioning drop down menu, select: Compatible with all systems and devices (MBR/DOS).enter image description here
  6. Proceed with formatting. Select the partition format compatible with your device.

Hope this helps

user68186
  • 37,461
0

To clean drives, or convert to MBR or GPT, I like to use the Windows installer command prompt. Plug in a bootable Windows 10 USB, then make your way to this screen.

partition screen

Press Shift + f10
Then type in the following commands:

diskpart
list disk
select disk & REM and then enter whichever listed disk you want to select
convert MBR
exit
karel
  • 122,292
  • 133
  • 301
  • 332