Linux - GeneralThis Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Distribution: Distribution: RHEL 5 with Pieces of this and that.
Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,697
Rep:
If your Windows partition is /dev/hda1 then change your line to rootnoverify (hd0,0). If hda2 then (hd0,1). 1st drive is always 0, 2nd is 1, and so on.
/dev/hda1 W95 ext'd (LBA) <- boot
/dev/hda5 HPFS/NTFS
/dev/hda6 Linux Swap
/dev/hda7 Linux
/dev/hdb1 HPFS/NTFS
You might have success using the map command in the menu.lst. This is used to fool windows into thinking it is on the first drive where it always wants to assume it is located.
Code:
menu.lst:
title Windows
rootnoverify (hd1,0)
map (hd1) (hd0)
map (hd0) (hd1)
makeactive
chainloader +1
Distribution: Distribution: RHEL 5 with Pieces of this and that.
Kernel 2.6.23.1, KDE 3.5.8 and KDE 4.0 beta, Plu
Posts: 5,697
Rep:
If you say Windows is on the master the master drive is it the /dev/hda5 partition. If it is actually the /dev/hdb1 then to me it means the Windows drive is the slave. Windows does not like to boot unless it is C. We need to trick grub to make windoes happy.
Try this.
title Windows
root = (hd1,0)
map (hd0) (hd1)
map (hd1) (hd0)
makeactive
chainloader +1
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.