|
发表于 2003-9-1 16:13:40
|
显示全部楼层
在挪linux的时候一定注意你的硬盘的位置,第一个还是第二个IDE口,主从盘之分等,即hda,hdb 还是hdc,hdd。
现在假设你的WIN在hda,Linux在hdc 上。修改你的BIOS从hdc启动,然后把你的grub.conf改成这样子:
[code:1]default=0
timeout=10
splashimage=(hd2,0)/grub/splash.xpm.gz
title Red Hat Linux (2.4.18-14)
root (hd2,0)
kernel /vmlinuz-2.4.18-14 ro root=LABEL=/
initrd /initrd-2.4.18-14.img
title win
map (hd0) (hd2)
map (hd2) (hd0)
rootnoverify (hd0,0)
makeactive
chainloader (hd0,0)+1
boot [/code:1]
根据你的具体情况做出相应修改 |
|