6.2. 在失败的设备中显示信息。
您可以使用
lvs
或者 vgs
命令的 -P
选项来显示那些没有出现在输出结果中的失败卷的信息。该选择甚至允许一些内部元数据不完全统一时的操作。例如:如果组成卷组 vg
的某个设备失败,vgs
命令可能会显示以下输出信息。
[root@link-07 tmp]# vgs -o +devices
Volume group "vg" not found
如果您为
vgs
指定了 -P
选项,那么该卷组虽仍然不可用,但您可能看到更多有关失败设备的信息。
[root@link-07 tmp]# vgs -P -o +devices
Partial mode. Incomplete volume groups will be activated read-only.
VG #PV #LV #SN Attr VSize VFree Devices
vg 9 2 0 rz-pn- 2.11T 2.07T unknown device(0)
vg 9 2 0 rz-pn- 2.11T 2.07T unknown device(5120),/dev/sda1(0)
在这个示例中,失败的设备导致卷组中的线性和条状逻辑卷都失败。不带
-P
选项的 lvs
命令会显示以下输出结果。
[root@link-07 tmp]# lvs -a -o +devices
Volume group "vg" not found
使用
-P
选项显示失败的逻辑卷。
[root@link-07 tmp]# lvs -P -a -o +devices
Partial mode. Incomplete volume groups will be activated read-only.
LV VG Attr LSize Origin Snap% Move Log Copy% Devices
linear vg -wi-a- 20.00G unknown device(0)
stripe vg -wi-a- 20.00G unknown device(5120),/dev/sda1(0)
下面的例子显示在镜像逻辑卷的一支出错时,带
-P
选项的 pvs
和 lvs
命令的输出结果。
root@link-08 ~]# vgs -a -o +devices -P
Partial mode. Incomplete volume groups will be activated read-only.
VG #PV #LV #SN Attr VSize VFree Devices
corey 4 4 0 rz-pnc 1.58T 1.34T my_mirror_mimage_0(0),my_mirror_mimage_1(0)
corey 4 4 0 rz-pnc 1.58T 1.34T /dev/sdd1(0)
corey 4 4 0 rz-pnc 1.58T 1.34T unknown device(0)
corey 4 4 0 rz-pnc 1.58T 1.34T /dev/sdb1(0)
[root@link-08 ~]# lvs -a -o +devices -P
Partial mode. Incomplete volume groups will be activated read-only.
LV VG Attr LSize Origin Snap% Move Log Copy% Devices
my_mirror corey mwi-a- 120.00G my_mirror_mlog 1.95 my_mirror_mimage_0(0),my_mirror_mimage_1(0)
[my_mirror_mimage_0] corey iwi-ao 120.00G unknown device(0)
[my_mirror_mimage_1] corey iwi-ao 120.00G /dev/sdb1(0)
[my_mirror_mlog] corey lwi-ao 4.00M /dev/sdd1(0)