728x90
반응형
증상
1) 현 상태에서 부팅이 진행되지 않음 (부트로더를 찾지 못하는 현상)
해결
1) CD로 부팅 후 복구모드(rescue mode) 실행
2) skip to shell 로 진입
3) 로컬 파일시스템을 /mnt/sysimage 아래로 마운트
# mount /dev/sda3 /mnt/sysimage/ -> /dev/sda3은 root 파티션이다. 다른 파티션에 설치되어 있을 수 있으니 확인 후 mount
# mount /dev/sda1 /mnt/sysimage/boot/ -> /dev/sda1 은 boot 파티션이다. 보통은 sda1로 하나 다를수 있으니 확인 후 mount
# mount -o bind /dev /mnt/sysimage/dev/
# mount -o bind /sys /mnt/sysimage/sys/
# mount -o bind /proc /mnt/sysimage/proc/
# mount -o bind /var /mnt/sysimage/var
# mount -o bind /tmp /mnt/sysimage/tmp
4) chroot 명령어를 통한 경로 설정 (chroot는 관리자가 지정한 디렉토리가 / 디렉토리로 인식하도록 하는 명령어)
# chroot /mnt/sysimage/
5) grub2 재 설치
# grub2-install /dev/sda
6) 종료
# exit
# reboot
RHEL 6이하 버전
반응형
'Linux' 카테고리의 다른 글
Linux UEFI Booting Error (0) | 2018.08.08 |
---|---|
Linux /bin/sh가 삭제된 경우(chroot 명령어 실행 안됨) (0) | 2018.08.08 |
Linux 부트로더 손상 (LVM 으로 / 구성일 경우) (0) | 2018.08.08 |
Linux grub2 이해 (0) | 2018.08.08 |
Linux GRUB1의 menu.lst를 GRUB2의 grub.cfg파일로 업데이트 (0) | 2018.08.08 |