1

Initial setup working: Ubuntu and Windows

My laptop had two OS working:

  1. Ubuntu 14.04 and
  2. Windows 8.1

At boot it showed "GNU GRUB Version 2.02 by Ubuntu."

Current setup, not satisfying

I recently installed Linux mint 18.2 cinnamon on it. Now at boot it shows GNU GRUB version 2.02~beta2-36ubuntu3.9+linuxmint1 and Linux Mint first:

photo

Desired setup: Ubuntu first, Ubuntu GRUB style

I'd like Ubuntu 14.04 at the first position, Linuxmint, and Windows after that. Also, I'd like GRUB with the Ubuntu style with Magenta background color.

As said in comment, I've deleted Linux Mint and don't know how to get Ubuntu first in list.

muru
  • 197,895
  • 55
  • 485
  • 740
GEORGE
  • 11
  • 1
    Post this: sudo efibootmgr -v, if Mint not using 'ubuntu'. If UEFI boot which it should be with any Windows 8 pre-installed system. You just need to change default UEFI boot order. See: https://askubuntu.com/questions/485261/change-boot-order-using-efibootmgr Also review man efibootmgr In past Mint has used "ubuntu" entry. Then you need to edit /EFI/ubuntu/grub.cfg. But you could also boot into Ubuntu and just totally reinstall grub which will update entry. See: https://askubuntu.com/questions/957914/dual-boot-14-04-17-04-lost-grub-menu/958220#958220 – oldfred Oct 25 '17 at 15:33
  • No, First I installed Ubuntu then go for a Windows one year later. – GEORGE Oct 25 '17 at 15:38
  • 1
    Each OS installing GRUB tends to put itself first on the list. Can you try this: boot to Ubuntu 14.04, login (first account created on the machine should do) and there run sudo update-grub then reboot. If that fits what you want, I'll make that comment an answer. – Stéphane Gourichon Oct 25 '17 at 16:14
  • 1
    Possible duplicate of How do I change the GRUB boot order? GRUB Customizer should do the job. – pomsky Oct 25 '17 at 16:30
  • Unfortunately I deleted linuxmint mint but still the option appears on grub menu..( like the picture above) – GEORGE Oct 25 '17 at 16:38
  • Doing sudo update-grub from Ubuntu should remove it. @StéphaneGourichon That is the answer indeed. –  Oct 25 '17 at 17:21
  • 3

1 Answers1

0

If you haven't found an answer yet.

Looks like you only have 1 hard drive /dev/sda, right? If that is the case, boot to Ubuntu, from the terminal type in:

sudo grub-install /dev/sda

That should override the GRUB that was installed by Mint. Then you will have to update the GRUB again:

sudo update-grub

Hope this helps!

Terrance
  • 41,612
  • 7
  • 124
  • 183