GRUB은 부팅 중에 "/boot/grub" 경로를 읽을 수 없습니다. 설치가 불가능합니다. 중단하는 중

GRUB은 부팅 중에 "/boot/grub" 경로를 읽을 수 없습니다. 설치가 불가능합니다. 중단하는 중

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

(원천)

관련 정보