如何将卷组“centos”中的 100% 可用空间添加到根逻辑卷?我使用什么工具来调整根逻辑卷的大小。
以下是回答该问题之前执行的步骤。
root@server1 ~]# vgs
VG #PV #LV #SN Attr Vsize Vfree
centos 1 2 0 wz--n- 6.98g 0
root@server1 ~]# pvcreate /dev/sdb
Physical volume "/dev/sdb" successfully created
root@server1 ~]# vgextend centos /dev/sdb
Volume group "centos" successfully created
root@server1 ~]# vgs
VG #PV #LV #SN Attr Vsize Vfree
centos 2 2 0 wz--n- 7.46g 496.00m
root@server1 ~]# lvs
LV VG Attr LSize
root centos -wi-a0 6.18g
swap centos -wi-a0 820.00m
答案1
您可以发出lvextend centos/root -l +100%FREE
,然后必须使用适当的文件系统调整大小实用工具。例如,如果使用 XFS,则应发出xfs_grow /
;另一方面,如果使用 EXT4,则应使用resize2fs /dev/centos/root
反正,在做任何事情之前,请先备份