Subj : Re: GRUB help To : comp.os.linux From : Doug Purdy Date : Fri Oct 22 2004 03:02 pm On Fri, 22 Oct 2004 07:56:42 -0400, Pandora Xero wrote: > I seem to be having some problems configuring GRUB to boot to my Windoze > partition, my menu.lst looks like: > ---------begin pasted section--------- > # Modified by YaST2. Last modification on Sat Sep 25 04:22:57 2004 > > > color white/blue black/light-gray > default 0 > timeout 8 > gfxmenu (hd0,0)/message > > ###Don't change this comment - YaST2 identifier: Original name: linux### > title Linux > kernel (hd0,0)/vmlinuz root=/dev/hde6 vga=0x317 splash=silent > console=tty0 desktop resume=/dev/hde2 showopts > initrd (hd0,0)/initrd > > ###Don't change this comment - YaST2 identifier: Original name: windows### > title Windows > root (hd1,0) > chainloader +1 > > ###Don't change this comment - YaST2 identifier: Original name: floppy### > title Floppy > root (fd0) > chainloader +1 > > ###Don't change this comment - YaST2 identifier: Original name: failsafe### > title Failsafe > kernel (hd0,0)/vmlinuz root=/dev/hde6 showopts ide=nodma apm=off > acpi=off vga=normal noresume iommu=noforce maxcpus=0 3 > initrd (hd0,0)/initrd > --------end pasted section--------- Hi, I'm a newbie home Linux user. So don't think I know what I'm writing about ;) but according to the docs on my system I see 2 possible problems. 1) You could be missing the Grub command according to the docs files on my computer: From my Fedora Core 2's /usr/share/doc/grub-0.94/menu.lst # For booting Windows NT or Windows95 title Windows NT / Windows 95 boot menu rootnoverify (hd0,0) makeactive chainloader +1 # For loading DOS if Windows NT is installed # chainload /bootsect.dos From my Fedora Core 2's terminal command # For booting Windows NT or Windows95 title Windows NT / Windows 95 boot menu root (hd0,0) makeactive chainloader +1 # For loading DOS if Windows NT is installed # chainload /bootsect.dos 2) also shows special commands when booting Windows from a second hard drive: " If you have installed DOS (or Windows) on a non-first hard disk, you have to use the disk swapping technique, because that OS cannot boot from any disks but the first one. The workaround used in GRUB is the command `map' (*note map::), like this: grub> map (hd0) (hd1) grub> map (hd1) (hd0) This performs a "virtual" swap between your first and second hard drive. *Caution:* This is effective only if DOS (or Windows) uses BIOS to access the swapped disks. If that OS uses a special driver for the disks, this probably won't work." Hope that's more help than hindrance. Doug .