grub을 업데이트하려고 할 때마다 다음 오류가 발생합니다.
# grub-install /dev/sda
Path `/boot/grub' is not readable by GRUB on boot. Installation is impossible. Aborting.
그리고
# grub-mkconfig -o /boot/grub/grub.cfg
/usr/sbin/grub-probe: error: cannot find a device for / (is /dev mounted?).
또한 btrfs를 사용하고 있습니다.
답변1
이 명령을 먼저 실행해야 합니다.
mount /dev/sda1 /mnt
mount --bind /dev /mnt/dev
mount --bind /dev/pts /mnt/dev/pts
mount --bind /proc /mnt/proc
mount --bind /sys /mnt/sys
또한 플래시 복구 드라이브에서 부팅하는 경우,
chroot /mnt
(원천)