PDA

View Full Version : help with grub.


tanis
11th June 2005, 09:39 AM
i just installed fc4 test 3.
now grub is causing me problem.
i have placed FC on a different hdd and windows on another
and i wrote the boot loader to the master boot record of the linux hdd.
so now when i try to use grub to open up windows it does not work.
i don't remember exact message but its only 2 line and had a plus sign ( sorry) :(

any way could somebody help me out.
how do i run windows from grub.
:confused:
my winxp partition is ntfs
and this is the messahe
Booting other
chain-logger +1

Ada
11th June 2005, 11:05 AM
The problem is f*cking windows is able to boot only from the primary drive. But you can take a tricky way: use the command map, to exchange BIOS drives virtually, like this:

grub> map (hd0) (hd1)
grub> map (hd1) (hd0)

E.g. lets assume windows is installed on /dev/hdb2 then use this entry in grub.conf:

title Windows
map (hd1) (hd0)
map (hd0) (hd1)
rootnoverify (hd1,1)
makeactive
chainloader +1

bitrain
11th June 2005, 11:07 AM

http://forums.fedoraforum.org/forum/showpost.php?p=276310&postcount=5
This comes down to the same as Ada posted.