Os primeiros 34 setores e os últimos 34 setores de seu disco não devem ser cobertos por nenhuma partição.
Você deve verificar isso com sudo fdisk l
, procurar por seu disco e verificar em qual setor a primeira partição começa e
em qual setor a última partição termina.
Se alguma partição estiver cobrindo o primeiro ou o último 34 setores do disco
você teria que redimensionar essa partição primeiro com gparted
.
Após essa preparação, você precisa executar sudo gdisk sdX
, em que sdX
é o disco que você deseja converter.
De man gdisk
:
Upon start, gdisk attempts to identify the partition type in use on the disk. If it finds valid GPT data, gdisk will use it. If gdisk finds a valid MBR or BSD disklabel but no GPT data, it will attempt to convert the MBR or disklabel into GPT form. Upon exiting with the 'w' option, gdisk replaces the MBR or disklabel with a GPT. If you mistakenly launch gdisk on an MBR disk, you can safely exit the program without making any changes by using the 'q' option. The MBR-to-GPT conversion will leave at least one gap in the partition numbering if the original MBR used logical partitions. These gaps are harmless, but you can eliminate them by using the 's' option, if you like.
Se gdisk
não estiver instalado em seu sistema, você poderá fazer isso com sudo apt-get install gdisk
.
Por favor, consulte o manual com man gdisk