Increasing disk space on a VM using Logical Volumes

From Peter Pap's Technowiki
Jump to: navigation, search

So you have a CentOS VM that uses logical volumes and it's running out of space on a given filesystem. You can increase the disk space as described here. Slight adjustments below:


1. Power off the virtual machine.

2. Edit the virtual machine settings and extend the virtual disk size.

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:

  # fdisk /dev/sda (depending the results of the step 4)

Press p to print the partition table to identify the number of partitions. By default, there are 2: sda1 and sda2.

Press n to create a new primary partition.

Press p for primary.

Press 3 for the partition number, depending on the output of the partition table print.

Press Enter two times.

Press t to change the system's partition ID.

Press 3 to select the newly creation partition.

Type 8e to change the Hex Code of the partition for Linux LVM.

Press w to write the changes to the partition table.

6. Restart the virtual machine.

7. Run this command to convert the new partition to a physical volume:

Note: The number for the sda can change depending on system setup. Use the sda number that was created in step 5.

   # pvcreate /dev/sda3

8. Run this command to extend the physical volume:

   # vgextend VolGroup00 /dev/sda3

Note: To determine which volume group to extend, use the command vgdisplay.

9. Run this command to verify how many physical extents are available to the Volume Group:

   # vgdisplay VolGroup00 | grep "Free"

10. 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. Use the full number output from Step 10 including any decimals.

Note: To determine which logical volume to extend, use the command lvdisplay.

11. Run the following command to expand the ext3 filesystem online, inside of the Logical Volume:

   # resize2fs /dev/VolGroup00/LogVol00