Lvm
Tags: linux, lvm
Creating an LVM
You can create a PV directly on a disk, but for consistency you should create a partition then your PV on that.
partred /dev/sdXmklabel gptmkpart    Name? Blank    Type? Default    Start? 0%    End? 100%quitPVpvcreate /dev/sdX#pvdisplayvgcreate <vg_name> /dev/sdX#vgdisplaylvcreate -L 1TiB -n <LV-Name> <VG-Name>lvdisplaymkfs.ext4 /dev/volgrp01/lv01Modifying Volumes
Making a larger partition from new disk space
Enlarge the partition with parted
parted (select disk)resizepart #100%LVM: we need to tell the LV subsystem about the new disk space; we do this by first extending the physical volume which occupies the partition:
pvresize /dev/sdX#then the logical volume
by percentage
lvresize -r -l 100%PVS /dev/mapper/XXXXXXXXby GB
lvresize -r -L +4GB /dev/mapper/XXXXXXXXXIf df -h still shows the wrong size then the above command didn’t expand the FS as it should. This could be due to version issues of the tools. Run resize2fs on the mapped volume.
Moving disk space around
File system check the volume to be shrunk, then shrink it by several GB more than you will be reclaiming. It will be enlarged later. Shrink the volume by your desired amount.
Assuming an end goal of 200G
e2fsck -f /dev/foo/rooresize2fs /dev/foo/roo 180Glvreduce -L 200G /dev/foo/rooEnlarge your target voume to take all now free space
lvresize -r -l 100%PVS /dev/foo/booFix the filesystems
resize2fs /dev/foo/rooresize2fs /dev/foo/booDelete volumes
lvremove /dev/rhel/homeShrinking XFS
You cannot shrink XFS. To get around this backup the data in your XFS volume and delete it. Do your required actions and then remake the XFS volume.