O Windows 10 pode ter um tipo de partição de GPT com um modo de inicialização UEFI?

0

O Windows 10 pode ter um tipo de partição de GPT com um modo de inicialização UEFI?

You'd need to ask somebody from Microsoft why they tie their partition table type (GPT vs. MBR) to their boot mode (EFI/UEFI vs. BIOS/CSM/legacy). Other OSes are capable of installing to GPT disks in EFI/UEFI mode.

link

A implicação da segunda frase é que a Microsoft não pode instalar em discos GPT no modo UEFI.

    
por Thufir 12.12.2016 / 14:53

1 resposta

2

Pelo que sei, é o contrário. Geralmente eles não gostam de discos GPT com o modo "legado". O artigo Instalação do Windows: Instalando usando o estilo de partição MBR ou GPT e partições de disco rígido baseadas em UEFI / GPT também reforce isso.

Cite o primeiro artigo, que é para o Windows 8.1:

When installing Windows on UEFI-based PCs using Windows Setup, your hard drive partition style must be set up to support either UEFI mode or legacy BIOS-compatibility mode.

For example, if you receive the error message: “Windows cannot be installed to this disk. The selected disk is not of the GPT partition style”, it’s because your PC is booted in UEFI mode, but your hard drive is not configured for UEFI mode.

Do segundo:

When you deploy Windows to a UEFI-based device, you must format the hard drive that includes the Windows partition by using a GUID partition table (GPT) file system. Additional drives may use either the GPT or the master boot record (MBR) file format.

Por que eles têm essas limitações ... não tem ideia. Talvez tenha algo a ver com sua estrutura / código de bootloader.

Em este site (Legacy BIOS Issues with GPT) , parece que o problema pode ser a especificação GPT .

GPT was created as part of the EFI specification, so of course GPT works well with EFI-based computers. There's no law that says that GPT can't be used with other computers, though. In particular, BIOS is so simple that it doesn't understand the partition table type used on the disk—it's the role of the boot loader and subsequent software to interpret the partition table. Thus, in theory there should be no problem using GPT with BIOS-based computers.

Unfortunately, n practice, there are occasional BIOS/GPT quirks or even downright incompatibilities. Furthermore, many modern computers with EFIs provide a Compatibility Support Module (CSM), which enables them to boot using BIOS-mode boot loaders. The trouble is that the firmware may use the partition table type as a cue for what type of boot mode to use, thus causing problems when trying to boot in BIOS mode from a GPT disk.

Mais adiante, sugere-se que pode haver um problema com o MBR protetor , que faz parte do disco baseado em GPT e sua interação com BIOS e bootcode.

    
por 12.12.2016 / 15:06