试图根据本指南安装带有LVM的Arch:http://sharpeend.impcode.com/2014/04/installing-arch-linux-with-lvm.html
分区:
sda
-system-boot
-systrm-root
-system-home发布于 2016-02-26 17:35:44
您需要安装lvm2 (但我怀疑您已经这样做了,因为您用lvm命令安装了磁盘!?)
# pacman -S lvm2然后将lvm2钩子添加到/etc/mkinitcpio.conf中的HOOKS=变量中:
HOOKS="consolefont keyboard keymap base udev modconf block mdadm_udev encrypt lvm2 resume filesystems autodetect shutdown"(我的配置,您不需要所有这些,只需在resume filesystems autodetect之前添加钩子)
然后重做$ mkinitcpio -p linux
https://unix.stackexchange.com/questions/266011
复制相似问题