|
|
发表于 2004-11-27 09:18:44
|
显示全部楼层
这个问题现在也困扰着我,但是你可以欺骗一次计算机^_^
在Bios中disable掉主硬盘,然后使用fc2引导,这样可以引导系统。在fc2下你还是可以看到主硬盘的,并且可以mount他。这样你可以观察到他属于hda还是hdb,一般为hdb。
对应修改/boot/grub/menu.lst
将系统的顺序修改好。
下面是我的一个menu.lst
# 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 (hd1,0)
# kernel /vmlinuz-version ro root=/dev/hdb6
# initrd /initrd-version.img
#boot=/dev/hda
default=7
timeout=10
splashimage=(hd1,0)/grub/splash.xpm.gz
title Red Hat Linux (2.4.20-31.9smp)
root (hd1,0)
kernel /vmlinuz-2.4.20-31.9smp ro root=LABEL=/
initrd /initrd-2.4.20-31.9smp.img
title Red Hat Linux (2.4.20-31.9bigmem)
root (hd1,0)
kernel /vmlinuz-2.4.20-31.9bigmem ro root=LABEL=/
initrd /initrd-2.4.20-31.9bigmem.img
title Red Hat Linux (2.4.20-31.9)
root (hd1,0)
kernel /vmlinuz-2.4.20-31.9 ro root=LABEL=/
initrd /initrd-2.4.20-31.9.img
title Red Hat Linux (2.4.20-31.9BOOT)
root (hd1,0)
kernel /vmlinuz-2.4.20-31.9BOOT ro root=LABEL=/
initrd /initrd-2.4.20-31.9BOOT.img
title Red Hat Linux (2.4.20-8bigmem)
root (hd1,0)
kernel /vmlinuz-2.4.20-8bigmem ro root=LABEL=/
initrd /initrd-2.4.20-8bigmem.img
title Red Hat Linux-smp (2.4.20-8smp)
root (hd1,0)
kernel /vmlinuz-2.4.20-8smp ro root=LABEL=/
initrd /initrd-2.4.20-8smp.img
title Red Hat Linux-up (2.4.20-8)
root (hd1,0)
kernel /vmlinuz-2.4.20-8 ro root=LABEL=/
initrd /initrd-2.4.20-8.img
title Red Hat Linux (2.4.20-31.9)
root (hd1,0)
kernel /vmlinuz-2.4.20-31.9 ro root=LABEL=/
initrd /initrd-2.4.20-31.9.img
title Microsoft
rootnoverify (hd0,0)
chainloader +1
title Microsoft
rootnoverify (hd0,0)
chainloader +1
为你需要引导的windows分区。 |
|