Link to home
Start Free TrialLog in
Avatar of gafoor78
gafoor78Flag for India

asked on

Multi Boot Problem- win98, win-xp and Fedora 2

Hi experts

I am very new to linux... i hav a pc in my home and it is already dual boot.. win 98 and Win-XP..
now i got fedora 2 and i installed it in the system..after the installation the GRUB boot loader comes and lists two options Fedora and Windows...if i select windows instead of coming the earlier options, that is Win98 and Win-XP the following message is coming and the system hangs

rootnoverify (hd1,1)
makeactive
chainloader +1

so now i am not able to work in windows...

how this is happend so ?..

how i can correct this ?.. or if i install everything from scratch what shud i do to work with all the OS..?

pls cooment on this urgently

gafoor
SOLUTION
Avatar of wesly_chen
wesly_chen
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of okidachi
okidachi

rootnoverify (hd1,1) ==> It looks like to have 2 separate drives for Windows and Linux. Perhaps, the problem is that your Windows drive is secondary drive. There is one thing very important here, the Windows OS cannot boot on the secondary drive, so to make it woks, login Linux and change the file /etc/grub.conf as follow:

map (hd0) (hd1)
map (hd1) (hd0)
rootnoverify (hd1,1)
makeactive
chainloader +1
boot  

The map command will exchange your drive so that the Windows OS will think it is on the primary drive and everything is done now I suppose :) ... but make sure that you name the partition correctly (hd1, 0) --> first parition of second drive, (hd1, 1) -> second partition of second drive.

Good luck,