逻辑卷依赖于设备映射程序(DM)内核驱动程序。 比如有个逻辑卷组rhel中有一个逻辑卷root,对应的设备为/dev/rhel/root。符号链接/dev/rhel/root指向/dev/dm-<number>块设备节点。number的分配是连续的,从0开始。 每个逻辑卷在/dev/mapper目录中有另外一个符号链接,名称为/dev/mapper/rhel-root。

通常可以使用任一可靠且一致的符号链接名称来访问逻辑卷,因为/dev/dm-<number>名称在每次启动都会有所不同。

[root@rhce7 ~]# cd /dev/mapper/
[root@rhce7 mapper]# ll
total
crw-------. root root , Jul : control
lrwxrwxrwx. root root Jul : rhel-root -> ../dm-
lrwxrwxrwx. root root Jul : rhel-swap -> ../dm-
[root@rhce7 mapper]# lvs
LV VG Attr LSize Pool Origin Data% Move Log Cpy%Sync Convert
root rhel -wi-ao---- .50g
swap rhel -wi-ao---- .00g
[root@rhce7 mapper]# cd /dev/rhel/
[root@rhce7 rhel]# ll
total
lrwxrwxrwx. root root Jul : root -> ../dm-
lrwxrwxrwx. root root Jul : swap -> ../dm-

查看uuid

[root@rhce7 ~]# blkid
/dev/sda1: UUID="ed75d4b9-6d85-4b02-8aa7-f966e78fdf85" TYPE="xfs"
/dev/sda2: UUID="ewUQqv-N1i5-9xcA-GRad-2BLV-qOTh-vNPOd2" TYPE="LVM2_member"
/dev/mapper/rhel-root: UUID="0a32f670-93f4-4354-8fcb-38d88d16469d" TYPE="xfs"
/dev/mapper/rhel-swap: UUID="cc16bb7d-a65c-4510-9f77-c28759220fbc" TYPE="swap"
05-11 22:38