Ubuntu – “apt-get install grub” wants to install packages although the GRUB bootmenu works

grub-legacygrub2package-management

Recently I made a fresh install of Ubuntu, and through some error, became very frustrated. Grub and 15.04 just don't seem to work well together. However, that is not exactly my question. I made the install finally, and when I booted, the grub menu obviously came up, but then when I got into my terminal to install some proprietary drivers, I did sudo apt-get install grub just to make sure everything was good. Instead of telling me that Grub was already installed it said 6 new packages would be installed. So here's the question. If the grub menu came up, and grub apparently wasn't installed, which side is wrong?

Best Answer

sudo apt-get install grub is a wrong command to run.

It installs legacy version of grub and removes grub-pc or grub-efi.

You can check /var/log/apt/history.log and revert these changes.

Related Question