Monday, June 17, 2013

How to reduce the root partition in LVM

In this tutorial, I am using the CentOS6(I believe that its also applicable on other Linux distro but didn’t try yet) that has ext4 partition lv_root mounted as / and lv_swap as swap from the volume group vg_centos6 (which is default), that has two hard drives (66GB & 25GB). Due to some reasons, I want to remove the 25GB hard drive from my computer and want to add new 50 GB hard drive. Before, removing the hard drive from the computer, we need to resize the lv_root, then remove it from volume group and at the end from the physical volume.

WARNING: It’s really dangerous, so backup your data before attempting this. Please don’t blame me, if you destory your system. You are responsible for your own actions!

Check the size of lv_root before starting this process:
df -h

0 Boot from CentOS 6 DVD (or any other Linux distro that you are using) and select “rescue” option: 1 Select the Skip, so that it will not mount the filesystem: 2 Run these commands:
pvscan
vgscan
vgchange -a y
lvscan

3 Display the lv_root:
lvdisplay /dev/vg_centos6/lv_root

4 fsck on the large root filesystem (lv_root):
fsck.ext4 /dev/vg_centos6/lv_root

5 Run e2fsck with -f (force) option:
e2fsck -f /dev/vg_centos6/lv_root

6

Issue the resize2fs command to reduce the filesystem (Important: The size here is the actual/total size of the lv_root after reduce, not the size that we want to decrease):
resize2fs -p /dev/vg_centos6/lv_root 65G

7

Now, issue the lvreduce command to reduce the logical volume size:
lvreduce -L 65G /dev/vg_centos6/lv_root

8

Run lvdisplay command to confirm the change:
lvdisplay /dev/vg_centos6/lv_root

9

Reboot the system and login. Remove the disk (in my case it is, /dev/sdb1) from volume group and then from physical volume:
sudo vgreduce vg_centos6 /dev/sdb1

sudo pvremove /dev/sdb1

10

Check the size of lv_root after all these changes:
df -h

11

Success!

Hope this will help you!

No comments:

Post a Comment