
답변1
부팅 복구가 작동하지 않았습니다. 많은 검색과 노력 끝에 마침내 다음 명령 세트를 사용하여 Ubuntu에 다시 액세스할 수 있었습니다.
sudo mount /dev/sdb8 /mnt
sudo mount --bind /dev /mnt/dev/
sudo mount --bind /dev/pts /mnt/dev/pts
sudo mount --bind /proc /mnt/proc
sudo mount --bind /sys /mnt/sys
sudo chroot /mnt
grub-install /dev/sdb
grub-install --recheck /dev/sdb
update-grub
exit
sudo umount /mnt/sys
sudo umount /mnt/proc
sudo umount /mnt/dev/pts
(모든 명령은 LiveUSB에서 실행되었습니다)