Mount filesystems in LVM partitions Check that LVM is installed on the system otherwise install it: #Fedora Linux > sudo dnf install lvm2 #CentOS/RHEL/Oracle Linux > sudo yum install lvm2 #OpenSUSE/SUSE Linux > sudo zypper install lvm2 #Debian/Ubuntu Linux > sudo apt install lvm2 #Arch Linux install > sudo pacman -S lvm2 Load the device mapper module: > sudo modprobe dm-mod Scan the system for LVM volumes and identify the one that contains the volume needed: > sudo vgscan Found volume group "VolGrp0" using metadata type lvm2 Activate the volume: > sudo vgchange -ay VolGrp0 Find the logical volume that contains the needed filesystem (in this case home): > sudo lvs LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert home VolGrp0 -wi-ao---- <448.38g root VolGrp0 -wi-ao---- 20.00g swap VolGrp0 -wc-ao---- 8.00g Prepare a mounting point for the volume: > sudo mkdir /mount/home Mount the volume > sudo mount /dev/VolGrp0/home /mnt/home