I installed Ubuntu on a logical partition a while ago. When I get to the grub bootlist, Vista is not there. What i get is this:
Ubuntu, with linux 2.6.32-26
Ubuntu, with linux 2.6.32-26 (Recovery mode)
Ubuntu, with linux 2.6.32-25
Ubuntu, with linux 2.6.32-26 (Recovery mode)
Ubuntu, with linux 2.6.32-24
Ubuntu, with linux 2.6.32-26 (Recovery mode)
Memory test (memtest86+)
Windows vista (loader) (on/dev/sda1)
windows recovery environment (loader) (on/dev/sda2)
"Windows vista (loader)" is an acer erecovery manager
Im guessing that grub installed on my primary partition so it overwrite the vista MBR and i dont have the option to boot vista. Is there some way i can just edit the MBR and add vista to it or how will i have to repair this?
here is my boot script http://pastebin.com/7HZFjBT7
/dev/sda1:Windows Vista (loader):Windows:chain and /dev/sda2:Windows Recovery Environment (loader):Windows1:chain
– Dec 08 '10 at 19:07sudo update-grub
– karthick87 Dec 08 '10 at 20:08the second is windows recovery environment which boots into a basic System recovery program.
– Dec 08 '10 at 20:09sudo update-grub
let me sort out this problem. – karthick87 Dec 08 '10 at 20:11Found Windows Vista (loader) on /dev/sda1
Found Windows Recovery Environment (loader) on /dev/sda2
– karthick87 Dec 08 '10 at 20:25sudo cat /boot/grub/grub.cfg | grep menuentry
– karthick87 Dec 08 '10 at 20:38BOOTMGR
on any NTFS partition. This file tells grub/os-prober that there is Vista present (NTLDR
would be for XP or NT). – Takkat Dec 08 '10 at 21:36sudo apt-get remove --purge grub grub-pc grub-common
Then reinstall,
sudo apt-get install grub-common grub-pc
Follow the on-screen instructions, choose your proper device i.e, sda in your case and then,
sudo update-grub
Lets see how that goes.
– karthick87 Dec 09 '10 at 07:27