根据(和我们的记录) ,我曾经lvresize
将 15 Gb 添加到大小为 10 Gb 的逻辑卷中。df
但是,lvresize
发现 LV 的大小为 20 Gb,因此调整大小的 LV 为 35 Gb。
这是为什么?
[root@host]# df -h /mydir
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/myvg-mylv 10G 7.0G 3.1G 70% /mydir
[root@host]# lvresize -r -L+15G /dev/mapper/myvg-mylv
Size of logical volume myvg/mylv changed from 20.00 GiB (5120 extents)
to 35.00 GiB (8960 extents).
Logical volume myvg/mylv successfully resized.
meta-data=/dev/mapper/myvg-mylv isize=256 agcount=20, agsize=131072 blks
= sectsz=512 attr=2, projid32bit=1
= crc=0 finobt=0 spinodes=0
data = bsize=4096 blocks=2621440, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=0
log =internal bsize=4096 blocks=2560, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
data blocks changed from 2621440 to 9175040
[root@host]# df -h /mydir
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/myvg-mylv 35G 7.0G 29G 20% /mydir
显示文件系统大小,而不是 LV 大小。LV 的大小很容易达到 20G(由 报告
lvresize
);例如,如果有人调整了 LV 的大小但没有调整文件系统的大小,就会发生这种情况。lvresize
多亏了这个-r
选项,你的命令解决了这个问题。/etc/lvm/archive
lvresize
应该包含 VG 元数据备份,它应该允许您在最后一个(以及在 LV 上使用的命令)之前找到真实的 LV 大小。