1

I have Ubuntu loaded on my sda partition, Mint on my sdd. Ubuntu's Grub isn't seeing that Mint is installed, so I can't boot it. How do I fix Grub so I can boot into either one?

What is the correct way to dual boot ubuntu & mint?

Aaron
  • 6,714

1 Answers1

1

Using a live Ubuntu cd And running boot-repair should fix the issue.

After you have loaded the live cd in "try mode".

open a terminal (ctl alt t) Then run the following command one by one to install the boot repair. Add boot-repair to the repository

sudo add-apt-repository ppa:yannubuntu/boot-repair

Update the package

sudo apt-get update

Next install boot-repair

sudo apt-get install -y boot-repair

Upgarde and run.

sudo apt-get upgrade &&  boot-repair

Or select it by System->Aministration->Boot Repair.

DnrDevil
  • 1,488