Desative o UEFI no BIOS ( manual ) ou crie um GPT tabela de particionamento ( gparted
ou gdisk
).
Exemplo de criação de um Wiki do Arch :
# gdisk /dev/sdX
o # create new empty GUID partition table
n # partition 1 [enter], from beginning [enter], to 100GiB [+100GiB], linux fs type [enter]
n # partition 2 [enter], from beginning [enter], to 108GiB [+8GiB], linux swap [8200]
w # write table to disk and exit
Outra opção é usar o utilitário parted
durante a instalação. Injete "CTRL + ALT + F2" durante o processo de instalação para ir na linha de comando com o utilitário 'parted'.
parted
(parted) print /dev/sda
(parted) select /dev/sda
(parted) mklabel gpt
(parted) yes
(parted) print /dev/sda
(parted) quit
retorne ao processo de instalação com CTRL + ALT + F1.