Arch Linux 在 UEFI 系统上不显示引导加载程序

Arch Linux 在 UEFI 系统上不显示引导加载程序

我最近在我的笔记本电脑(Dell Precision M4500)上安装了 Arch。我刚刚更换了硬盘,因此在安装过程中必须从头开始分区。我选择使用 GPT 分区,并将系统设置为使用 UEFI 启动。

在安装过程中,我尝试安装 GRUB 但失败了,因为我使用传统命令安装到 MBR 磁盘 ( grub-install /dev/sda)。这失败了,并出现了一条关于 EFI 的消息(恐怕我不记得是什么了),所以我改用了bootctl。我跟着Arch 初学者指南致信:

# bootctl install

boot/loader/entries/arch.conf使用以下内容创建:

title   Arch Linux
linux   /vmlinuz-linux
initrd  /initramfs-linux.img
options root=/dev/sda2 rw

/boot/loader/loader.conf

timeout 3
default arch

然后我就正常安装系统了。但是,重新启动后,系统开机自检后出现黑屏并且没有引导加载程序。进入引导加载程序的唯一方法是按 调F12出系统的引导菜单(与让(或让,当系统不是 EFI 时)我进入 BIOS 的菜单相同),然后选择“linux bootloader”从菜单中。这将带我进入引导加载程序屏幕,我可以在其中选择“Arch”。

  1. 按时得到的菜单F12

    主菜单

  2. 如果我选择“grub”,我会得到:

    子菜单1

    再次选择“grub”只会让我直接回到同一个菜单。

  3. 如果从第一个菜单中选择“Linux Boot Manager”,我会得到一个带有 Arch 条目和“EFI 默认加载程序”条目的菜单:

    在此输入图像描述

    选择“Arch”会启动我的 Arch 安装,选择“EFI 默认加载程序”会将我带到下面 4 所示的菜单。

  4. 如果我从第一个菜单中选择“UEFI: INT 13(RAID.0x80)”,我会得到一个只有 Arch 条目的菜单,选择哪个将启动我的 Arch 系统:

    在此输入图像描述

我也尝试安装grub(这次正确):

pacman -S efibootmgr grub os-prober
grub-install --target=x86_64-efi --efi-directory=/boot/EFI --bootloader-id=grub --recheck
grub-mkconfig -o /boot/grub/grub.cfg

这使得引导菜单中出现了一个新的“grub”条目F12,但是选择它会使我进入黑屏,然后返回引导菜单。

我的grub.cfg是(评论已删除):

insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt 
insmod ext2
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  98202b4b-af35-413a-b3ff-87c149c5061d
else
  search --no-floppy --fs-uuid --set=root 98202b4b-af35-413a-b3ff-87c149c5061d
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
else
  set timeout=5
fi

menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-98202b4b-af35-413a-b3ff-87c149c5061d' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt 
    insmod fat
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1  9943-114D
    else
      search --no-floppy --fs-uuid --set=root 9943-114D
    fi
    echo    'Loading Linux linux ...'
    linux   /vmlinuz-linux root=UUID=98202b4b-af35-413a-b3ff-87c149c5061d rw  quiet
    echo    'Loading initial ramdisk ...'
    initrd   /initramfs-linux.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-98202b4b-af35-413a-b3ff-87c149c5061d' {
    menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-98202b4b-af35-413a-b3ff-87c149c5061d' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt 
        insmod fat
        set root='hd0,gpt1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1  9943-114D
        else
          search --no-floppy --fs-uuid --set=root 9943-114D
        fi
        echo    'Loading Linux linux ...'
        linux   /vmlinuz-linux root=UUID=98202b4b-af35-413a-b3ff-87c149c5061d rw  quiet
        echo    'Loading initial ramdisk ...'
        initrd   /initramfs-linux.img
    }
    menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-98202b4b-af35-413a-b3ff-87c149c5061d' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt 
        insmod fat
        set root='hd0,gpt1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1  9943-114D
        else
          search --no-floppy --fs-uuid --set=root 9943-114D
        fi
        echo    'Loading Linux linux ...'
        linux   /vmlinuz-linux root=UUID=98202b4b-af35-413a-b3ff-87c149c5061d rw  quiet
        echo    'Loading initial ramdisk ...'
        initrd   /initramfs-linux-fallback.img
    }
}
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi

我的分区表(注意错误,我不知道这是否相关):

$ sudo parted  /dev/sda print
Error: The backup GPT table is corrupt, but the primary appears OK, so that will
be used.
OK/Cancel? OK                                                             
Model: ATA TOSHIBA MQ01ABD0 (scsi)
Disk /dev/sda: 750GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags: 

Number  Start   End     Size    File system     Name  Flags
 1      1049kB  538MB   537MB   fat32                 boot, esp
 2      538MB   32.7GB  32.2GB  ext4
 3      32.7GB  462GB   429GB   ext4
 4      462GB   479GB   17.2GB  linux-swap(v1)
 5      479GB   750GB   271GB   ntfs                  msftdata

/etc/fstab

# /dev/sda2
UUID=98202b4b-af35-413a-b3ff-87c149c5061d   /           ext4        rw,relatime,data=ordered    0 1
# /dev/sda3
UUID=baa9dd1e-835c-4d88-af8a-31dc97ac7af6   /home       ext4        rw,relatime,data=ordered    0 2
# /dev/sda1
UUID=9943-114D          /boot       vfat        rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro    0 2
# /dev/sda4
UUID=8eaf91cd-f638-487b-8299-50d39342df0d   none        swap        defaults    0 0

(我的 EFI 分区 ( sda1) 安装在/boot;应该是这样吗/boot/EFI?)

所以,我的问题是,如何让我的系统直接启动到可用的引导加载程序而无需按F12?我更喜欢这个引导加载程序,grub但如果有必要的话我可以接受bootctl

答案1

在尝试了各种方法后,但没有任何效果,我终于发现我要做的就是在 BIOS 中禁用 fastboot。就我而言,是:

BIOS 快速启动设置

将其从“最小”更改为“彻底”让我可以直接进入引导加载程序,而无需点击F12

相关内容