Para a instalação do UEFI, seu disco rígido deve ter uma tabela de partições do GPT. É necessário criar ESP
(partição do sistema EFI, 500MB, FAT32, sinalizador de inicialização).
Se a sua unidade tiver msdos-partition-table, você deverá primeiro converter em GPT.
Ou reinstale no modo herdado.
Inicialize seu instalador do Ubuntu e escolha Something else
. Abra o terminal com Ctrl+Alt+T
.
Descubra o seu tipo de tabela de partição:
sudo parted -l
Procure a entrada Partition Table
IF Partition Table is GPT then reinstall in UEFI-mode, create ESP during Install. IF Partition Table is msdos then reinstall in legacy-mode or convert to GPT and then reinstall in UEFI-mode.
Como converter msdos em GPT:
sudo gdisk sdX (for X type the correct letter for your drive)
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 (msdos), it will attempt to convert the MBR into GPT form. Upon exiting with the 'w' option, gdisk replaces the MBR or disklabel with a GPT. 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.
Nota:
Como você inicializa é como você instala. Se você deseja instalar no modo UEFI, é necessário inicializar o instalador no modo UEFI. Se você deseja instalar no modo herdado, é necessário inicializar o instalador no modo herdado. Basta escolher a opção de inicialização correta ao iniciar o instalador.