Permanent rescue
Need the following information submitted
(1) In Ubuntu post the file /boot/grub/menu.lst
(2) In Ubuntu terminal post the screen output of
(3) In Ubuntu terminal post the screen output of
Code:
grub
geometry (hd0)
geometry (hd1)
quit
Temporary cure
(1) When seeing Grub screen, press esc key and the "c" key to drop into a Grub prompt terminal mode.
(2) Find out which disk has Windows by typing commands
Code:
geometry (hd0)
geometry (hd1)
A MS Windows partition has type 0x7 partition ID. A Linux has 0x83 type ID. The partition with MS Windows is in either (hd0,0) or (hd1,0), assuming it occupies the first partition of either the 1st disk (hd0) or the 2nd disk (hd1)
(3) Boot up Windows manually by following commands in Grub prompt
(a) Windows type 0x7 ID in disk (hd0)
Code:
root (hd0,0)
makeactive
chainloader +1
boot
(b) Windows type partition ID 0x7 in (hd1)
Code:
root (hd1,0)
makeactive
map (hd0) (hd1)
map (hd1) (hd0)
chainloader +1
boot
If your MS Windows is in a Fat32 partition it would have type ID 0xc.