Inicialize o FreeBSD no modo legado no disco GPT

6

Estou tentando instalar o FreeBSD no modo legado (BIOS) em um sistema UEFI, já que tenho um Intel Iris Graphics 6100, que é da série Broadwell e ainda não é suportado pelo driver intel , então quero ser capaz de usar o driver vesa - que não é suportado pelo UEFI.

Eu já tenho 2 sistemas Linux instalados, em um disco GPT, e eu iniciei o live CD do FreeBSD no modo legacy, acreditando (estupidamente, devo dizer), que ele seria instalado no modo legacy, e que eu seria capaz para inicializar a partir dele no modo herdado.

Então, existe uma maneira de inicializar a partir do FreeBSD no modo legado, em um disco GPT ou para ter suporte a placas gráficas Broadwell no FreeBSD enquanto estiver usando o UEFI?

    
por cocosushi 13.11.2016 / 20:39

1 resposta

3

Sim, você pode instalar o FreeBSD no modo Legacy no disco GPT.

Você pode conseguir isso criando uma pequena partição chamada bios_grub (importante) antes de instalar o FreeBSD, esta partição é requerida para instalar o Grub com sucesso no Master-Boot-Record.

Some newer systems use the GUID Partition Table (GPT) format. This was specified as part of the Extensible Firmware Interface (EFI), but it can also be used on BIOS platforms if system software supports it; for example, GRUB and GNU/Linux can be used in this configuration. With this format, it is possible to reserve a whole partition for GRUB, called the BIOS Boot Partition. GRUB can then be embedded into that partition without the risk of being overwritten by other software and without being contained in a filesystem which might move its blocks around.

When creating a BIOS Boot Partition on a GPT system, you should make sure that it is at least 31 KiB in size. (GPT-formatted disks are not usually particularly small, so we recommend that you make it larger than the bare minimum, such as 1 MiB, to allow plenty of room for growth.) You must also make sure that it has the proper partition type. Using GNU Parted, you can set this using a command such as the following:

parted /dev/disk set partition-number bios_grub on

    
por 14.11.2016 / 09:24