0

I install ubuntu 16.04 LTS along with ubuntu 14.04.Its shows installation success. But when restarted it automaticlly comes to ubuntu 14.04 ,what will i do?

hacker
  • 1

2 Answers2

2

If you installed 16.04 after you installed 14.04, it is probable that you are booting of the Grub of the 14.04, which has been installed in the MBR (by default). It does not know of your new 16.04 installation.

Fixing it is not difficult. As you can boot 14.04, you can execute as root:

update-grub

This should detect both 14.04 and 16.04 (see also How can I add a new operating system boot entry to the GRUB2 menu?).

You can then use the instructions in NZD's answer to change your default operating system.

1

When you've installed both, one of them will be set up to be the default in GRUB. That is the one that will boot when you power up or reset your system.

When your reboot your system, you can interrupt GRUB and select a different OS.

To make it permanent see for instance How to edit GRUB Default Operating System? or How do I change the GRUB boot order?.

NZD
  • 3,231