boot problem ununtu

Man of Honour
Joined
11 Mar 2004
Posts
76,637
I installed unbuntu, but think it edited the vista boot loader rather than xp (vista no longer on computer), Know it boots straight into xp. How do I get it to setup the bootscreen?
 
bump.

I have now reinstalled vista, and have the vista booting options on startup, i then reinstalled kbuntu, which installs grub but yet again no option appears on boot up.

anyone help, this is so annoying.
 
d

make sure that you have the diffrent partitions.. If you have two diffrent hds.. Unplug the hd that you have windows on.. Install linux on the other. Then plug the windows hd back in and install to that, And when its booting up if no grub loader comes up try pressing F8 or simular to get a boot screen to choice..
 
Now it boots straight into Vista's bootloader, right? Perhaps it's messing up with placing the bootloader in the MBR. Grub works by placing a small record of itself in the MRB then keeping the vast majority of its data, including the boot image list, in /boot on your Linux partition.

Try this:
Boot up the Live CD. Does it mount your Linux partition automatically? If not mount it like so:
mkdir ~/Desktop/root
sudo mount -t ext3 /dev/hda1 /home/kubuntu/Desktop/root

What that does in the first line is make a directory on your desktop in which you can mount the partition. In the second line you mount the ext3 formatted partition. If your filesystem or partition location is different change this to match.

Once you've got it mounted and ready for your perusal, navigate to /home/kubuntu/Desktop/root/boot/grub and open up your menu.lst. This file is the file that contains the list used to define the bootable devices. Is it there? What does it say?
 
Back
Top Bottom