Mounting LVM partitions
To mount a device which uses logical volume manager (LVM), do the following:
# pvs
// Get info about physical volumes in the device
# lvdisplay volumeGroup // The volume group obtained from pvs
# vgchange -ay /dev/volumeGroup // Activate the volume
# mount /dev/volumeGroup/logicalVolume /mnt // mount the logical volume
Labels: Debian, LVM