Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
tips:uefi [2015/10/30 13:18] – [UEFI boot loader does not show up in firmware menu] scipio | tips:uefi [2021/10/11 10:20] (current) – removed scipio | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== UEFI ====== | ||
- | http:// | ||
- | |||
- | |||
- | ===== UEFI boot loader does not show up in firmware menu ===== | ||
- | |||
- | On some UEFI motherboards like boards with an Intel Z77 chipset, adding entries with efibootmgr or bcfg from the EFI Shell will not work because they do not show up on the boot menu list after being added to NVRAM. | ||
- | |||
- | This issue is caused because the motherboards can only load Microsoft Windows. To solve this you have to place the .efi file in the location that Windows uses. | ||
- | |||
- | Copy the bootx64.efi file from the Arch Linux installation medium (FSO:) to the Microsoft directory your ESP partition on your hard drive (FS1:). Do this by booting into EFI shell and typing: | ||
- | |||
- | < | ||
- | FS1: | ||
- | cd EFI | ||
- | mkdir Microsoft | ||
- | cd Microsoft | ||
- | mkdir Boot | ||
- | cp FS0: | ||
- | </ | ||
- | |||
- | |||
- | change boot order | ||
- | < | ||
- | # show | ||
- | efibootmgr | ||
- | |||
- | # change | ||
- | efibootmgr -o 1,0 | ||
- | </ | ||
- | |||
- | force ubuntu on ACER bad | ||
- | < | ||
- | mv EFI/ | ||
- | cp EFI/ | ||
- | </ | ||
- | ===== grub legacy ===== | ||
- | |||
- | |||
- | < | ||
- | root@sysresccd:/# | ||
- | Model: ATA ST500LT012-9WS14 (scsi) | ||
- | Disk /dev/sda: 500GB | ||
- | Sector size (logical/ | ||
- | Partition Table: gpt | ||
- | |||
- | Number | ||
- | | ||
- | | ||
- | | ||
- | </ | ||
- | |||
- | |||
- | < | ||
- | parted /dev/sda set 1 bios_grub on | ||
- | </ |