Questions
To test your knowledge of this chapter, answer the following questions:
- Which of the following statements is true?
A. Only GPT partitions can be used on BIOS-based computers.
B. Only a GPT partition can be used to install GRUB2.
C. Only a GPT partition can be used to install systemd-boot.
D. Only an MBR partition can be used to install systemd-boot.
- How does GRUB2 work with Secure Boot?
A. It uses the shim system.
B. Its files are directly signed by Microsoft.
C. GRUB2 doesn't work with Secure Boot.
- How does systemd-boot work?
A. It uses the
grubx64.efi
file to activate the bootloader.B. It copies the kernel file over to a file with a
.efi
filename extension so that the kernel can act as its own bootloader.C. It directly calls in the Linux kernel from the
/boot/
directory.D. It doesn't work at all.
- What is necessary to make Secure Boot work?
A. Nothing. It works on all computers.
B. That the machine has a BIOS chip, and that TPM is enabled.
C. That the...