Design a UEFI Linux disk.
Choose the standard partition from which firmware loads boot files.
Which item is appropriate?
The EFI System Partition (ESP) stores EFI executables and boot data read by UEFI firmware and is commonly mounted at /boot/efi.
Detailed explanation
Incorrect. Swap stores memory pages rather than UEFI executables.
Incorrect. Swap stores memory pages rather than UEFI executables.
Incorrect. /home stores user data.
Incorrect. /home stores user data.
Incorrect. An LVM PV provides storage to LVM and is not the standard firmware-readable ESP.
Incorrect. An LVM PV provides storage to LVM and is not the standard firmware-readable ESP.
Correct. The ESP is the UEFI boot partition.
Correct. The ESP is the UEFI boot partition.
Try it yourself
An example you can run in a temporary verification environment.
printf '%s
' 'UEFI -> ESP -> EFI boot loader -> kernel'Expected result
UEFIからESP上のブートローダーを経てカーネルへ進む関係Key points
- ESP is for UEFI boot
- It stores EFI executables
- Often mounted at /boot/efi
Notes
- Environment: UEFI/GPTの概念確認
- Command output formatting can vary slightly by distribution or tool version.
- Run the example in a temporary directory or process when possible.
Foundation review
Read the scope first
Check whether the command acts on the current shell, a new process, an existing process, or a file.
Verify the observable result
Use the supplied command and compare the output with the expected result.