본문 바로가기

Linux

Kubuntu Edgy Grub 재설치하기

우분투 6.10 엣지 부트로더(grub) 재설치 방법 을 묻는 글이 있길래 직접 한번 해봤습니다.

Live CD 로 부팅 후 우선 터미널 프로그램을 실행 (K-Menu -> System -> Konsole)


파티션이 잡혔는지 확인 후 grub-install 명령을 실행시켰더니 "Could not find device for /boot: ~~~" 에러 발생


참고글 Installing GRUB natively, How to restore Grub from a live Ubuntu cd

Once started, GRUB will show the command-line interface (see Command-line interface). First, set the GRUB's root device1 to the partition containing the boot directory, like this:
     grub> root (hd0,0)

If you are not sure which partition actually holds this directory, use the command find (see find), like this:
     grub> find /boot/grub/stage1

This will search for the file name /boot/grub/stage1 and show the devices which contain the file. Once you've set the root device correctly, run the command setup (see setup):
     grub> setup (hd0)

sudo grub 명령으로 GRUB command-line 접근해서 root (hd0,0), setup(hd0) 명령을 차례로 입력해서 재설치합니다.
root(hd0,0) 등은 시스템에 따라 다르겠죠. grub 설치된 곳을 모른다면 find /boot/grub/stage1 으로 찾아셔야...^^



이제 quit 명령으로 grub 을 빠져 나가 리부팅을 하면 됩니다.