Broke Fedora 20 by changing the Volume Group Name and resizing root in LVM.
In an attempt to seperate my /home from my root, I did the following using a Parted Magic USB ISO.
- I resized ext4 filesystem on root using resize2fs
- Then reduced the lvm partition using lvreduce.
- Then used lvcreate to create a new partition.
- Mounted the new partition and moved data.
- I also created an Additional Partition and renamed the volume group.
I then edited fstab and added the UUIDs of the partition to the disk. It gets stuck at Reached Target System. I then tried to generate a new GRUB2 config file using grub2-mkconfig using the fedora Live USB. Still same thing.
Also the grub is on a seperate /boot partition. The entire lvm is on an ssd and grub stage 0 is on a HDD that loads this. Grub is working fine but fedora stops loading at Reached Target System.
Verify that you can see the partitions using the Parted Magic (vgchange -ay) Edit /etc/fstab and remove the UUID and try using using the location (/dev/mapper/<lvname>) of the partitions instead of the UUIDs. </lvname>
You might have the wrong UUIDs also.
grub2-mkconfig
needs to be done in a chroot, like you get with the rescue environment from the install image.dracut --regenerate-all --force
to regenerate initramfs while in the chroot is a good idea too.