ARCH grub-mkconfig 不执行任何操作

ARCH grub-mkconfig 不执行任何操作

我尝试安装 ARCH,一切似乎都工作得很好。我大部分时间都遵循这个安装(https://gitlab.com/jsherman82/notes/blob/master/arch.md

但我似乎在引导加载程序的安装及其配置方面遇到问题。

我的系统有三个分区:

nvme0n1p1 with 400MiB of type EFI System mounted at /boot/EFI
nvme0n1p2 with 400MiB of type ext2 mounted at /boot
nvme0n1p3 with the rest of the disk (~240GiB) of type lvm

nvme0n1p3通过 cryptsetup 加密并分为两个 lvm 分区:

main-root with 30GiB mounted at /
main-home with the rest mounted at /home

到目前为止,一切都很好。

我编辑了这一行,/etc/default/grub如下所示:

GRUB_CMDLINE_LINUX_DEFAULT="cryptdevice=/dev/nvme0n1p3:main quiet"

但当我执行步骤 38) 时,# grub-mkconfig -o /boot/grub/grub.cfg没有任何反应。没有输出,终端卡住并出现闪烁的光标。我必须通过手动停止程序^C。我尝试了相同的命令,但没有写入文件 - 只是一个闪烁的光标。

/boot/grubgrub.cfg其中没有- 文件(显然)。

我需要解决这个问题并生成一个grub.cfg-File。

相关内容