--merge 选项表示
在将旧快照合并到原点的过程中,我能否可靠地拍摄原点的快照
手册页显示:“合并正在进行时,对原点的读取或写入看起来就像是指向正在合并的快照一样。”
不过,目前还不清楚在这里拍摄快照是否安全。
我知道我可以对快照进行操作并丢弃 - 但这不是问题:)
答案1
所以我没想到的是:不支持具有合并快照的源的快照
所以不行”。
lvcreate -s -L 6G -n root_tst_snap /dev/deploy/root_tst
dd if=/dev/zero of=/dev/deploy/root_tst bs=10M count=100
lvconvert --merge -b /dev/deploy/root_tst_snap
lvcreate -s -L 6G -n root_tst_snap2 /dev/deploy/root_tst
# Stop here with notice
dd if=/dev/zero of=/dev/deploy/root_tst bs=10M count=100
lvconvert --merge -b /dev/deploy/root_tst_snap2
mount /dev/deploy/root_tst /mnt
ll /mnt
umount /mnt