CentOS と Ubuntu をデュアルブートしているけど、CentOSが起動できない。
MBRには Ubuntu の grub2 がインストールされている。
grub2 になってから、menu.lst ファイルがない。。
で、grub2 から grub に変更し、CentOS が起動できるようにした。
root@alaska:~# mv /boot/grub/ /boot/grub2
root@alaska:~# apt-get remove grub-pc
root@alaska:~# mkdir /boot/grub
root@alaska:~# apt-get install grub
root@alaska:~# update-grub
root@alaska:~# grub-install /dev/sda
/boot/grub/menu.lst に下記を追記。
--
title CentOS (2.6.18-164.9.1.el5xen)
root (hd0,0)
kernel /boot/xen.gz-2.6.18-164.9.1.el5
module /boot/vmlinuz-2.6.18-164.9.1.el5xen ro root=LABEL=/ rhgb quiet
module /boot/initrd-2.6.18-164.9.1.el5xen.img
title CentOS (2.6.18-164.6.1.el5xen)
root (hd0,0)
kernel /boot/xen.gz-2.6.18-164.6.1.el5
module /boot/vmlinuz-2.6.18-164.6.1.el5xen ro root=LABEL=/ rhgb quiet
module /boot/initrd-2.6.18-164.6.1.el5xen.img
--
CentOSも起動できるようになった。
Done!
--
CentOSも起動できるようになった。
Done!
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.