Re: GRUB stopping reinstall of windows XP.
You have to chainload into it.
If it is on the partition (hdx,y), then in your menu.lst, do:
title Chainload into Dell Recovery
root (hdx,y)
chainloader +1
Or, when you boot and see the GRUB menu, hit the "c" key, then do these commands at the GRUB prompt you get:
grub>root (hdx,y)
grub>chainloader +1
grub>boot
(you need boot at the prompt; you don't need it in menu.lst as it is implied there)
(hdx,y)
Hard drive x. Grub counts them starting at zero. sda (usually) is hd0, sdb usually is hd1, etc.
y = partition number and again, for GRUB 0.97, they are counted from zero. First partition is partition 0.
E.g., sda1 = (hd0,0), sda2 = (hd0,1); sdb7 = (hd1,6); etc.
(GRUB 2 counts hard drives the same way, from zero; but it counts partitions starting from one.)
You have to chainload into it.
If it is on the partition (hdx,y), then in your menu.lst, do:
title Chainload into Dell Recovery
root (hdx,y)
chainloader +1
Or, when you boot and see the GRUB menu, hit the "c" key, then do these commands at the GRUB prompt you get:
grub>root (hdx,y)
grub>chainloader +1
grub>boot
(you need boot at the prompt; you don't need it in menu.lst as it is implied there)
(hdx,y)
Hard drive x. Grub counts them starting at zero. sda (usually) is hd0, sdb usually is hd1, etc.
y = partition number and again, for GRUB 0.97, they are counted from zero. First partition is partition 0.
E.g., sda1 = (hd0,0), sda2 = (hd0,1); sdb7 = (hd1,6); etc.
(GRUB 2 counts hard drives the same way, from zero; but it counts partitions starting from one.)
Comment