Mounting LVM partitions with rescue CD media (Fedora / CentOS / RedHat)
Whether you need to enlarge or shrink a partition that is usually in “/” (slash root) format LVM or just troubleshooting your Linux system, you can use the following method to mount LVM partitions through rescue mode. following the steps:
Boot the system through the rescue CD media, and do a VG scan (volume group):
Boot the system through the rescue CD media, and do a VG scan (volume group):

1 | root@techsoftcenter ~]# lvm vgscan -v |
Activate the existing VG () volume, group:
1 | root@techsoftcenter ~]# lvm vgchange -vy |
Melihat list logical volume (LV):
1 | root@techsoftcenter ~]# lvm lvs --all |
After getting LVM information and active logical volumes, now the LVM system is ready to be installed.
1 | root@techsoftcenter ~]# mount /dev/volumegroup/logicalvolume /mountpoint |
I hope it has been a useful article.