Descobrir o espaço usado no volume fino do snapshot

3

Eu tenho a seguinte configuração de lvm.

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 --virtualsize 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 snapshot_1
mount and create a file of 250MB on the volume

Suponho que o espaço real usado pelo snapshot_1 seja de 250 MB e não (1 GB + 250 MB). Existe uma maneira de descobrir o espaço físico usado real no snapshot_1 (250 MB).

thin_dump -f xml /dev/mapper/vg_root_thin_pool_tmeta

Continuarei com a mesma pergunta, pois eles podem estar vinculados. Deixe-me saber se precisar separar a próxima pergunta:

copia informações sobre os volumes lógicos.

 begin superblock: "", 3, 8, 128, 326976
 device: 1
 mapped_blocks: 60
 transaction: 0
 creation time: 0
 snap time: 0
    (0..1) -> (0..1), 0
    2047 -> 58, 0
    4094 -> 57, 0
    6141 -> 52, 0

Como mapeamos o ID do dispositivo para o volume lvm?

    
por gudge 01.11.2015 / 21:24

0 respostas