title: “How to mount LVM partitions from rescue mode RHEL”
date: 2016-01-18T13:44:42
slug: how-to-mount-lvm-partitions-from-rescue-mode-rhel
Scan for volume groups:
lvm vgscan -v
Activate all volume groups:
lvm vgchange -a y
List logical volumes:
lvm lvs –all
With this information, and the volumes activated, you should be able to mount the volumes:
mount /dev/volumegroup/logicalvolume /mountpoint
