|
发表于 2004-4-7 23:18:22
|
显示全部楼层
# 用Linux的安装盘的第一张盘引导系统
# 输入linux rescue,接着按提示选择语言、键盘等,最后进入SHELL界面
# chroot /mnt/sysimage
切换到硬盘上已经安装好的linux的根上去
# grub-install /dev/hda
将grub的引导程序重新写到MBR上去.
# 重新起动linux
# 在配置文件/boot/grub/grub.conf中添加windows的起动信息
可以参考如下配置文件
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,0)
# kernel /vmlinuz-version ro root=/dev/hda2
# initrd /initrd-version.img
#boot=/dev/hda
default=0
timeout=10
splashimage=(hd0,0)/grub/splash.xpm.gz
title Red Hat Linux (2.4.20-
root (hd0,0)
kernel /vmlinuz-2.4.20-8 ro root=LABEL=/12
initrd /initrd-2.4.20-8.img
title Windows XP
rootnoverify (hd0,2)
chainloader +1
# 重新起动机器, 就可以看到可以选择两个操作系统
细节可以参考grub的资料 |
|