How to Extend LVM Partition on CentOS

Caution: VMware recommends having a complete backup of the virtual machine prior making these changes.
  1. Power off the virtual machine.
  2. Edit the virtual machine settings and extend the virtual disk size. For more information, see Increasing the size of a virtual disk (1004047).
  3. Power on the virtual machine.
  4. Identify the device name, which is by default /dev/sda, and confirm the new size by running the command:
    # fdisk -l
  5. Create a new primary partition:
    1. Run the command:
      # fdisk /dev/sda (depending the results of the step 4)
       
    2. Press p to print the partition table to identify the number of partitions. By default there are 2: sda1 and sda2.
    3. Press n to create a new primary partition. 
    4. Press p for primary.
    5. Press 3 for the partition number, depending the output of the partition table print.
    6. Press Enter two times.
    7. Press w to write the changes to the partition table.
  6. Restart the virtual machine.
  7. Run this command to verify that the changes were saved to the partition table and that the new partition has an 83 type:

    # fdisk -l
  8. Run this command to convert the new partition to a physical volume:

    # pvcreate /dev/sda3
  9. Run this command to extend the physical volume:

    # vgextend VolGroup00 /dev/sda3

    Note: To determine which volume group to extend, use the command vgdisplay.
  10. Run this command to verify how many physical extents are available to the Volume Group:
    # vgdisplay VolGroup00 | grep "Free"
  11. Run the following command to extend the Logical Volume:

    # lvextend -L+#G /dev/VolGroup00/LogVol00

    Where # is the number of Free space in GB available as per the previous command.

    Note: to determine which logical volume to extend, use the command lvdisplay.
  12. Run the following command to expand the ext3 filesystem online, inside of the Logical Volume:

    # resize2fs /dev/VolGroup00/LogVol00
    Note: Use resize2fs instead of ext2online if it is not a Red Hat virtual machine.
  13. Run the following command to verify that the / filesystem has the new space available:

    # df -h /
  • 192 Users Found This Useful
Was this answer helpful?

Related Articles

How to increase Set max connection On Centos 6.x

for centos 6.x it is changed to the following codes : To print current limit type:# sysctl...

How to prevent Slowloris with iptables on CentOS

following this command line as root accessiptables -I INPUT -m state --state ESTABLISHED,RELATED...

Forgot Root Password "Give root password for maintenance"

To reset your root password: 1. When the GRUB loader shows during boot press the spare bar to...

How to Secure /tmp on CentOS แบบ image files

cd / dd if=/dev/zero of=/tmpfile bs=1 count=0 seek=4Gmkfs.ext4 -j /tmpfile mount -o...

SSH Key เข้าใช้งาน Linux Server ของ CentOS ด้วยโปรแกรม PuTTY

1. เข้าใช้งาน โดยการกรอก IP ของ Linux Server ที่ต้องการจะเชื่อมต่อ Port การใช้งานเป็น 22 2....