User Tools

Site Tools


lvm

This is an old revision of the document!


Table of Contents

LVM

LVM you can increase / decrease size without any issue.
But it is important you do it in proper steps.

Reducing Size

umount /home
e2fsck -y /dev/mapper/VolGroup00-LogVol00
resize2fs -f /dev/mapper/VolGroup00-LogVol00 1536M
lvreduce -L1536M /dev/mapper/VolGroup00-LogVol00 
mount /home

Increasing Size

umount /opt/
e2fsck -y /dev/mapper/VolGroup00-LogVol02
lvextend -L+512M /dev/mapper/VolGroup00-LogVol02
resize2fs /dev/mapper/VolGroup00-LogVol02
mount /opt
lvm.1306961984.txt.gz · Last modified: 2020/08/10 02:30 (external edit)