Linux Mint ISO를 사용하여 Ubuntu Grub을 복구할 수 있나요?

Linux Mint ISO를 사용하여 Ubuntu Grub을 복구할 수 있나요?

내 친구가 Ubuntu를 실행 중이고 GRUB RESCUEMint ISO를 사용하여 Grub을 복구할 수 있습니까? Ubuntu ISO가 없기 때문에?

답변1

Ubuntu 설치가 여전히 존재하는 경우(GRUB만 누락된 경우) 물론 라이브 부팅 기능이 있는 배포를 사용하여 이 작업을 수행할 수 있습니다. chrootUbuntu 설치로 이동하여 Grub을 설치하고 업데이트합니다. /dev/sda5Ubuntu 파티션인 경우 :

mount /dev/sda5 /mnt
mount -o bind /dev /mnt/dev
mount -t proc none /mnt/proc
mount -t sysfs none /mnt/sys
mount -t devpts none /mnt/dev/pts
chroot /mnt /bin/bash
#Inside the chroot
grub-install /dev/sda
update-grub
exit
# Unmount all those mounts:
for m in /mnt/{dev/pts,dev,proc,sys,}; do umount $m; done
# reboot

grub을 설치하기만 하면 되고 업데이트가 필요하지 않은 경우에는 다음이 필요하지 않습니다 chroot.

mount /dev/sda5 /mnt
grub-install --root-directory=/mnt /dev/sda

별도의 부팅 파티션이 있는 경우 설치 후에도 마운트해야 합니다 /mnt.

답변2

grub은 표준 부트 로더이므로 grub을 부트 로더로 사용하는 모든 배포판을 사용할 수 있습니다.

관련 정보