How reduce or shrink Logical Volume on Linux

by Vivek Gite on August 1, 2006 · 6 comments

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.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 6 comments… read them below or add one }

1 Suresh March 23, 2010

It’s totally wrong, there is no such type of command ‘e2fsadm’ in LINUX.
Plz suggest………………………

Reply

2 Tanvir February 5, 2011

“e2fsadm” is for kernel 2.4 and less. This command doesn’t work with kernel 2.6. What else could be done?

Reply

3 Anil July 27, 2011

You can look at man pages for following commands
LVM – lvextend, lvresize
Filesystem – resize2fs

Reply

4 Bipin Bahuguna November 4, 2011

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.

Reply

5 Bipin Bahuguna November 4, 2011

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.

Reply

6 Vkram January 3, 2012

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

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 2 + 15 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: