0

I have installed Windows 10 , Ubuntu 14.04 and Fedora 22 on my system in that order. Fedora is using LVM so it is not accessible in Nautilus(Ubuntu). That is my first problem. The second problem is that Fedora installed its own GRUB, which had all the correct boot entries for all three OS. but when i updated Ubuntu it also updated GRUB and reset the GRUB installed by Fedora and now only Ubuntu and Win 10 is available in the boot menu of GRUB. Can someone please tell me how to fix this. Thank You.

1 Answers1

1

I ran into similar situation like 6 or 7 years ago, not remember well, but will try to help.

First you need to mount LVM partition; (ref: linuxquestion)

1- Boot Ubuntu.

2- Install lvm2:

$ sudo apt-get install lvm2

3- Load the necessary module(s):

$ sudo modprobe dm-mod

4- Scan your system for LVM volumes and identify in the output the volume group name that has your Fedora volume (mine proved to be VolGroup00):

$ sudo vgscan

5- Activate the volume:

$ sudo vgchange -ay VolGroup00

6- Find the logical volume that has your Fedora root filesystem (mine proved to be LogVol00):

$ sudo lvs

7- Create a mount point for that volume:

$ sudo mkdir /mnt/fcroot

8- Mount it:

$ sudo mount /dev/VolGroup00/LogVol00 /mnt/fcroot -o ro,user

Than whilst the partition is mounted, you should try to update grub configuration as explained in here: Ubuntu does not put Fedora into GRUB menu

sudo update-grub

Your Ubuntu should now see all partitions with bootloader settings and should add all OS'es into the grub.

benjamin button
  • 273
  • 1
  • 13
  • Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Mark Kirby Dec 04 '15 at 09:13
  • Actually you're totally right, but I never find writing long answers useful while it is possible to explain the solution via shot links. However, it is true, I should include some parts of answer in here with reference. – benjamin button Dec 04 '15 at 09:16
  • Just add in any required code etc, you don't have to write an essay, just add the basics here. This site discriminates against link only answers, as, links can break or go missing and then your answer would go from being correct to worthless. – Mark Kirby Dec 04 '15 at 09:19