遵循Derobert的技巧,在调整LVM卷大小时可以调整基础文件系统的大小:
lvm> lvextend -r -l +100%FREE /dev/VolGroup00/lvolhome
fsck from util-linux 2.25.2
/sbin/fsck.btrfs: BTRFS file system.
Size of logical volume VolGroup00/lvolhome changed from 3.04 GiB (777 extents) to 14.94 GiB (3824 extents).
Logical volume lvolhome successfully resized
fsadm: Filesystem "btrfs" on device "/dev/mapper/VolGroup00-lvolhome" is not supported by this tool
fsadm failed: 1
“问题”是fsadm工具不支持btrfs调整大小。灰心丧气,我决定用困难的方式做到这一点(又名手动):
sudo btrfs filesystem resize max /dev/mapper/VolGroup00-lvolhome
ERROR: can't access '/dev/mapper/VolGroup00-lvolhome'
好吧,btrfs无法“访问”该设备,但是它可以检测到它:
> sudo btrfs filesystem show
Label: none uuid: 53330630-9670-4110-8f04-5a39bfa86478
Total devices 1 FS bytes used 2.75GiB
devid 1 size 3.04GiB used 3.03GiB path /dev/mapper/VolGroup00-lvolhome
那么,有什么用呢?如何在逻辑卷内调整btrfs分区的大小?
1
它与安装点而不是设备名称一起使用吗?
—
frostschutz
是的,它应该是btrfs挂载的路径(而不是块设备的路径)。另外,
—
derobert 2014年
btrfs fi show
如果fs中有多个设备,则可能需要指定一个分隔符(来自)。
@frostschutz是的,确实如此。好奇。
—
Braiam 2014年