Adding new disks to a volume group and extending a logical volume
One of the great things about LVM, and more specifically, volume groups, is that we can add a new disk to it and start using that newly extended space. Let's try it by adding the physical volume in /dev/vdc
to the storage
volume group:
[root@rhel8 ~]# vgs VG #PV #LV #SN Attr VSize VFree rhel 1 2 0 wz--n- <9,00g 0 storage 2 1 0 wz--n- 1016,00m 816,00m [root@rhel8 ~]# vgextend storage /dev/vdc Volume group "storage" successfully extended [root@rhel8 ~]# vgs VG #PV #LV #SN Attr VSize VFree rhel ...