|
发表于 2004-7-31 12:27:48
|
显示全部楼层
You may have install windows 2000 on a non-primary partition,on which there is no ntldr file that windows 2000 need to boot up with.
One solution is to do as follows:
First, change the windows 2000 partition to primary partition with certain harddisk tools as PowerQuest PartitionMagic,
Second, run fixboot on that partition , that is to boot from install cd and enter Repair mode, run fixboot.
Last, modify your grub.conf file to something like this -- the windows boot section.
- title Windows 98
- root (hd0,0)
- makeactive
- chainloader +1
- boot
- title Windows 2000
- root (hd0,1)
- makeactive
- chainloader +1
- boot
- tile Redhat Linux 9.0
- ...
复制代码
Above is just a sample. change it according to your environment. |
|