Q. How do I reduce or shrink Logical Volume on Linux? I am using CentOS Linux. Moreover, I would like to shrink or reduce a partition on an existing Logical Volume.
A. You need to use e2fsadm command. This command allows you resizing of a logical volume containing a mounted or unmounted ext2/ext3 filesystem. Logical volumes can be resized dynamically while preserving data on the volume for both ext2 and ext3 file system.
However, before using any one of the following command, make sure you have backup of all important data/config files.
First, unmount partition. For example if your paritition is called /webroot (vg0 volume group), type the following command:# umount /webrootLet us say you want to reduce size by 1000MB:# e2fsadm -L -1000M /dev/vg0/webrootWhere,
- -L -1000M: Resize the filesystem/logical volume to or by the given size. If you use + or - then the number will be relative the the current size of the logical volume, otherwise the volume will be resized to LogicalVolumeSize. A size suffix of K for kilobytes, M for megabytes, G for gigabytes or T for terabytes can be used.
- /dev/vg0/webroot - /webroot is part of vg0 volume (make sure you replace this name with your actual volume)
Now see to see the attributes of volume:# vgdisplayMount the volume:# mount /webrootFor more information read man pages of vgdisplay and e2fsadm.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop











{ 8 comments… read them below or add one }
It’s totally wrong, there is no such type of command ‘e2fsadm’ in LINUX.
Plz suggest………………………
“e2fsadm” is for kernel 2.4 and less. This command doesn’t work with kernel 2.6. What else could be done?
You can look at man pages for following commands
LVM – lvextend, lvresize
Filesystem – resize2fs
Hi,
You can reduce lvm size with lvreduce command.
First Step : –> umount /lvmpartition
Second Step : –> e2fsck /lvmpartition
Third Step: –> lvreduce -L100M /lvmpartition
if any issue with linux u can directly contact me on given email address.
Hi,
You can reduce lvm size with lvreduce command.
First Step : –> umount /lvmpartition
Second Step : –> e2fsck /lvmpartition
Third Step: –> resize2fs /lvmpartition
Fourth Step: –> lvreduce -L100M /lvmpartition
in previous reply just missed 3rd step.
if any issue with linux u can directly contact me on given email address.
you still missed one more step
First Step : –> umount /lvmpartition
Second Step : –> e2fsck /lvmpartition
Third Step: –> resize2fs /lvmpartition
Fourth Step: –> lvreduce -L100M /lvmpartition
Fifth step –> resize2fs /lvmpartition
note here that after lvreduce , we reduces size of the partition and not of filesystem so we need to excute fifth step as well.
just check it.
Reduce LV size in RHEL5.6
This is a right command which reduce the size. No make the LV size 200M
# lvreduce -L -200M /dev/polar/root
Hey Mr. Noor parker so after fifth step do we need to mount it or have to leave it as it is…?because we have unounted it in fifth step.