* [gentoo-user] Issues with Gentoo & WinXP dualboot setup
@ 2006-06-05 5:01 Dmitry Mashkovskiy
2006-06-05 8:41 ` Andreas Claesson
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Dmitry Mashkovskiy @ 2006-06-05 5:01 UTC (permalink / raw
To: gentoo-user
Hello,
I've successfully set up Gentoo on the machine with ABIT IS7 motherboard
and two SATA disks (integrated controller on ICH5 chipset, I guess). The
first one is Seagate (Ch2 M. (master?) in BIOS) with WinXP, the second
is Maxtor (Ch3 M. in BIOS) with Gentoo and GRUB in MBR. One problem is
that I cannot boot in Windows while booting with GRUB. Here is my grub.conf:
-------------
default 0
timeout 10
title=Windows XP
rootnoverify (hd1,0)
makeactive
chainloader +1
title=Gentoo Linux 2.6.12-r6
root (hd0,0)
kernel /kernel-2.6.12-gentoo-r6 root=/dev/sdb3 irqpoll
-------------
I get only
Booting 'Windows XP'
rootnoverify (hd1,0)
makeactive
chainloader +1
and then machine hangs. So I have to set Seagate drive as a boot device
in BIOS in order to boot Windows. How can I work it out? Should I
install GRUB in the MBR of Windows disk?
Another problem is that sometimes machine freezes or falls in kernel
panic while booting Gentoo (usually on probing ATA devices). I suppose
it may be due to buggy/broken hardware but it would be nice to find some
solution or workaround.
Thanks in advance,
D.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Issues with Gentoo & WinXP dualboot setup
2006-06-05 5:01 [gentoo-user] Issues with Gentoo & WinXP dualboot setup Dmitry Mashkovskiy
@ 2006-06-05 8:41 ` Andreas Claesson
2006-06-16 2:42 ` Dmitry Mashkovskiy
2006-06-05 8:44 ` Maxim
2006-06-06 2:45 ` Shaochun Wang
2 siblings, 1 reply; 5+ messages in thread
From: Andreas Claesson @ 2006-06-05 8:41 UTC (permalink / raw
To: gentoo-user
On 6/5/06, Dmitry Mashkovskiy <smash-lists@poi.dvo.ru> wrote:
> Hello,
>
> I've successfully set up Gentoo on the machine with ABIT IS7 motherboard
> and two SATA disks (integrated controller on ICH5 chipset, I guess). The
> first one is Seagate (Ch2 M. (master?) in BIOS) with WinXP, the second
> is Maxtor (Ch3 M. in BIOS) with Gentoo and GRUB in MBR. One problem is
> that I cannot boot in Windows while booting with GRUB. Here is my grub.conf:
> -------------
> default 0
> timeout 10
>
> title=Windows XP
> rootnoverify (hd1,0)
> makeactive
> chainloader +1
>
> title=Gentoo Linux 2.6.12-r6
> root (hd0,0)
> kernel /kernel-2.6.12-gentoo-r6 root=/dev/sdb3 irqpoll
> -------------
> I get only
>
> Booting 'Windows XP'
> rootnoverify (hd1,0)
> makeactive
> chainloader +1
>
> and then machine hangs. So I have to set Seagate drive as a boot device
> in BIOS in order to boot Windows. How can I work it out? Should I
> install GRUB in the MBR of Windows disk?
> Another problem is that sometimes machine freezes or falls in kernel
> panic while booting Gentoo (usually on probing ATA devices). I suppose
> it may be due to buggy/broken hardware but it would be nice to find some
> solution or workaround.
>
I believe the problem is that Windows expect to be installed on the first disk
and when it is not it fail to start.
Try adding this before the rootnoverify line:
map hd0 hd1
map hd1 hd0
This will make the bios change the order of the disks and Windows will
hopefully be happy again.
/Andreas
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Issues with Gentoo & WinXP dualboot setup
2006-06-05 8:41 ` Andreas Claesson
@ 2006-06-16 2:42 ` Dmitry Mashkovskiy
0 siblings, 0 replies; 5+ messages in thread
From: Dmitry Mashkovskiy @ 2006-06-16 2:42 UTC (permalink / raw
To: gentoo-user
Hi again! I'm late a little :)
>
> I believe the problem is that Windows expect to be installed on the
> first disk
> and when it is not it fail to start.
>
> Try adding this before the rootnoverify line:
>
> map hd0 hd1
> map hd1 hd0
>
> This will make the bios change the order of the disks and Windows will
> hopefully be happy again.
>
> /Andreas
Thanks a lot, Andreas, it works.
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Issues with Gentoo & WinXP dualboot setup
2006-06-05 5:01 [gentoo-user] Issues with Gentoo & WinXP dualboot setup Dmitry Mashkovskiy
2006-06-05 8:41 ` Andreas Claesson
@ 2006-06-05 8:44 ` Maxim
2006-06-06 2:45 ` Shaochun Wang
2 siblings, 0 replies; 5+ messages in thread
From: Maxim @ 2006-06-05 8:44 UTC (permalink / raw
To: gentoo-user
> I get only
>
> Booting 'Windows XP'
> rootnoverify (hd1,0)
> makeactive
> chainloader +1
>
> and then machine hangs. So I have to set Seagate drive as a boot device
> in BIOS in order to boot Windows. How can I work it out? Should I
> install GRUB in the MBR of Windows disk?
> Another problem is that sometimes machine freezes or falls in kernel
> panic while booting Gentoo (usually on probing ATA devices). I suppose
> it may be due to buggy/broken hardware but it would be nice to find some
> solution or workaround.
BOIS changing the numbers of disk during loading.
Try to modify /boot/grub/device.map
-
Мах Jazz
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Issues with Gentoo & WinXP dualboot setup
2006-06-05 5:01 [gentoo-user] Issues with Gentoo & WinXP dualboot setup Dmitry Mashkovskiy
2006-06-05 8:41 ` Andreas Claesson
2006-06-05 8:44 ` Maxim
@ 2006-06-06 2:45 ` Shaochun Wang
2 siblings, 0 replies; 5+ messages in thread
From: Shaochun Wang @ 2006-06-06 2:45 UTC (permalink / raw
To: gentoo-user
On Mon, Jun 05, 2006 at 04:01:10PM +1100, Dmitry Mashkovskiy wrote:
> Hello,
>
> I've successfully set up Gentoo on the machine with ABIT IS7 motherboard
> and two SATA disks (integrated controller on ICH5 chipset, I guess). The
> first one is Seagate (Ch2 M. (master?) in BIOS) with WinXP, the second
> is Maxtor (Ch3 M. in BIOS) with Gentoo and GRUB in MBR. One problem is
> that I cannot boot in Windows while booting with GRUB. Here is my grub.conf:
> -------------
> default 0
> timeout 10
>
> title=Windows XP
> rootnoverify (hd1,0)
> makeactive
> chainloader +1
>
> title=Gentoo Linux 2.6.12-r6
> root (hd0,0)
> kernel /kernel-2.6.12-gentoo-r6 root=/dev/sdb3 irqpoll
> -------------
> I get only
>
> Booting 'Windows XP'
> rootnoverify (hd1,0)
> makeactive
> chainloader +1
>
> and then machine hangs. So I have to set Seagate drive as a boot device
> in BIOS in order to boot Windows. How can I work it out? Should I
> install GRUB in the MBR of Windows disk?
> Another problem is that sometimes machine freezes or falls in kernel
> panic while booting Gentoo (usually on probing ATA devices). I suppose
> it may be due to buggy/broken hardware but it would be nice to find some
> solution or workaround.
>
>
> Thanks in advance,
> D.
> --
> gentoo-user@gentoo.org mailing list
I hope the following works for you:
default 0
timeout 10
title=Windows XP
rootnoverify (hd0,0)
chainloader +1
title=Gentoo Linux 2.6.12-r6
root (hd1,0)
kernel /kernel-2.6.12-gentoo-r6 root=/dev/sdb3 irqpoll
--
Shaochun Wang(王绍春) <scwang@ios.ac.cn>
--
gentoo-user@gentoo.org mailing list
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-06-16 2:48 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-05 5:01 [gentoo-user] Issues with Gentoo & WinXP dualboot setup Dmitry Mashkovskiy
2006-06-05 8:41 ` Andreas Claesson
2006-06-16 2:42 ` Dmitry Mashkovskiy
2006-06-05 8:44 ` Maxim
2006-06-06 2:45 ` Shaochun Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox