Any suggestion?
I usually use GParted, but the KDE Partition Manager is supposed to be OK, also, according to people here.
So you used KPM to create a partition table (where, at some point in creating it, you selected a GPT type).
So now you have a GPT partition table set up (presumably).
But you haven't created any partitions yet. So, you will not see any partitions in the graphic or in the listing. Usually, the first partition most people create is the ESP, for example.
You won't see the Protective MBR because it is not a partition. It is 512 B at the start of that new disk, and it is setup by the GPT creator (KPM) according to GPT specs.
That Protective MBR has the correct code in it.
Edit: I copied my first 512 B (in my UEFI/GPT system) here:
Code:
sudo dd if=/dev/sda count=1 | hexdump -C 00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 000001c0 02 00 ee ff ff ff 01 00 00 00 2f 60 38 3a 00 00 |........../`8:..| 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| * 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.| 1+0 records in 1+0 records out 512 bytes copied, 1.5237e-05 s, 33.6 MB/s 00000200
Comment