在创建逻辑卷时,可以指定逻辑卷的major和minor设备号。
[-M|--persistent {y|n}] [--major major] [--minor minor]
-M, --persistent {y|n}
Set to y to make the minor number specified persistent.
--minor minor
Sets the minor number.
-M必须和--major一起使用
例子
lvcreate -l 50%VG -n lv01 -M y --major 253 --minor 0 vgdata01
lvcreate -l 50%VG -n lv02 -M y --major 253 --minor 16 vgdata01
#dmsetup ls
vgdata01-lv02 (253, 16)
vgdata01-lv01 (253, 0)
对于已创建好的逻辑卷,如果要修改major和minor号,需要deactive,然后修改,所以不能挂载。
例子
#lvchange -M y --major 253 --minor 32 /dev/mapper/vgdata01-lv02
Logical volume lv02 will be deactivated temporarily. Continue? [y/n]: y
LV vgdata01/lv02 in use: not deactivating
lv02: deactivation failed
#umount /u02
#lvchange -M y --major 253 --minor 32 /dev/mapper/vgdata01-lv02
Logical volume lv02 will be deactivated temporarily. Continue? [y/n]: y
Logical volume "lv02" changed
#dmsetup ls
vgdata01-lv02 (253, 32)
vgdata01-lv01 (253, 0)
#mount -a
时间: 2024-09-22 02:52:02