Lvm

僅顯示 lvs 的快照卷的選項

  • October 5, 2016

請考慮以下配置:

Hard Disk: /dev/sdb  (Size 10 GB)
VG: vg_root on /dev/sdb
THIN_POOL thin_pool occupying the whole physical extent
lvcreate -y --extents 100%free --thin vg_root/thin_pool

Thin volume on the thin pool
lvcreate --name lv_1 --virtualsize 1GB --thinpool vg_root/thin_pool

Another thin volume on the thin_pool
lvcreate --name lv_2 --virtualize 2GB --thinpool vg_root/thin_pool
mount and create a file of 1 GB on the volume

Snapshot volume for lv_2
lvcreate -y --setactivationskip n --snapshot --thinpool vg_root/thin_pool vg_root/lv_2 --name snapshot1
mount and create a file of 250MB on the volume

有沒有辦法通過 lvs 只顯示快照卷:snapshot1 和 snapshot2。

謝謝

快照被標識為欄位s的第一個字元。lv_attr您可以使用-S選擇來過濾lv_attr值。以下命令應該可以解決問題:

lvs -S 'lv_attr =~ ^s'

引用自:https://serverfault.com/questions/733762