I think these are the critical entries:
- Code: Select all
============================= Boot Info Summary: ===============================
=> Grub2 (v1.97-1.98) is installed in the MBR of /dev/sda and looks at sector
1 of the same hard drive for core.img. core.img is at this location and
looks in partition 6 for (,msdos6)/boot/grub.
This indicates that GRUB 1.97 or 1.98 is installed in the MBR of the disk. This version of GRUB will execute. It appears to be intact and it looks for its support files in /dev/sda6's /boot/grub directory. By itself, this seems OK; but....
- Code: Select all
sda6: __________________________________________________________________________
File system: ext4
Boot sector type: Grub2 (v1.99)
Boot sector info: Grub2 (v1.99) is installed in the boot sector of sda6
and looks at sector 1258242408 of the same hard drive
for core.img. core.img is at this location and looks
in partition 72 for .
Operating System: Linux Mint 14 Nadia
Boot files: /boot/grub/grub.cfg /etc/fstab
Another version of GRUB (1.99) is installed in the boot sector of /dev/sda6. Since 1.99 > 1.98, my hunch is that your Ubuntu installation put GRUB 1.97 or 1.98 in the MBR; then when you installed Mint, it put its newer GRUB in /dev/sda6, leaving the MBR-resident GRUB code "orphaned" and unable to work correctly because it's relying on support files that no longer exist -- they've been replaced with newer incompatible support files.
The solution to this problem is to re-install GRUB in the MBR of /dev/sda. There are a number of ways to do this. The one that I find easiest to explain is:
- Download the Super GRUB2 Disk and burn it to a CD. (I think it'll also work on a USB flash drive, but I'm not positive of that.)
- Boot the Super GRUB2 Disk and play with its menu until you find an option that gets Mint to boot. (There are several options, and you may need to try several. IIRC, "Detect any GRUB2 configuration file" usually works for me.)
- Once in Mint, open a shell and type "sudo grub-install /dev/sda".
- Remove the Super GRUB2 Disk and reboot to test.
With any luck it should work at this point. If not, try again, but also do a "sudo update-grub" instead of "sudo grub-install /dev/sda". If that works, try Googling on "re-install GRUB" for alternative methods of doing the job.