I have 2 distributions in my PC. Ubuntu and Linux Mint. Linux Mint was installed second, but I work mostly in Ubuntu. Whenever I install new kernel in my ubuntu, I have to run update-grub from Linux-Mint to get it updated in Grub screen. Is there anyway to make the GRUB in my ubuntu as the one which loads the operating systems?
Asked
Active
Viewed 1,002 times
1
2 Answers
0
Try Taking a Look here, it should reinstall grub, And most probably fix your problem https://help.ubuntu.com/community/Boot-Repair#A2nd_option_%3A_install_Boot-Repair_in_Ubuntu

samgabbay
- 704
0
Thanks for the links. I could achieve my purpose using
'grub-install ' command.
Syntax: grub-install --root-directory=X $dev
Where X is the mount point of your partition containing grub files,in this case the partition containing my ubuntu and dev is the hdd device. Eg: /dev/sda

Sreejith M M
- 11
sudo update-grub
on your Ubuntu. If that failed, trysudo apt-get --reinstall install grub2 grub-pc
and then run the first command(all commands on Ubuntu). – αғsнιη Nov 24 '14 at 19:33