Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

How to increase LVM in Linux

-----------------------------1.Check free available size in VG.


# vgdisplay
check for word " Free PE / Size "
2. Incase did not find, add disk to PV
#pvcreate /dev/sdb
3. extend Volume Group
#vgextend data02 /dev/sdb
4. extend LMV
lvextend -L+10G /dev/data02/root
5. Finally, increase filesystem.
resize2fs /dev/data02/root

You might also like