Extending a logical volume in a virtual machine running Red Hat or Cent OS
search cancel

Extending a logical volume in a virtual machine running Red Hat or Cent OS

book

Article ID: 316393

calendar_today

Updated On:

Products

VMware VMware Desktop Hypervisor VMware vSphere ESXi

Issue/Introduction

This article provides steps for extending the root partition residing in a logical volume created with Logical Volume Manager (LVM) in a virtual machine running Red Hat/Cent OS.


Environment

VMware Workstation 5.x (Linux)
VMware Player 1.x (Windows)
VMware vSphere ESXi 5.5
VMware Player 3.x (Linux)
VMware Fusion Pro 8.x
VMware Player 7.x (Windows)
VMware Player 7.x (Linux)
VMware Server 2.0.x (Windows)
VMware Workstation 11.x (for Linux)
VMware Workstation 4.x (Windows)
VMware Player 2.x (Windows)
VMware Fusion 3.x
VMware Workstation 10.x (Windows)
VMware Player 2.x (Linux)
VMware Server 2.0.x (Linux)
VMware Server 1.0.x (Windows)
VMware Fusion 7.x
VMware GSX Server 2.x (Windows)
VMware Player 6.x (Linux)
VMware Workstation 10.x (Linux)
VMware Workstation 9.x (Linux)
VMware Player 5.x (Windows)
VMware Player 5.x (Linux)
VMware Workstation 11.x (for Windows)
VMware Workstation 3.x (Linux)
VMware Fusion 4.x
VMware Fusion 1.x
VMware Workstation Player 12.x (Linux)
VMware Fusion 8.x
VMware Player Pro 7.x (Windows)
VMware Player 4.x (Windows)
VMware Workstation Pro 12.x (Windows)
VMware GSX Server 3.x (Windows)
VMware Workstation 8.x (Linux)
VMware Fusion 5.x
VMware Player 3.x (Windows )
VMware Workstation 9.x (Windows)
VMware GSX Server 3.x (Linux)
VMware Fusion 2.x
VMware Workstation 3.x (Windows)
VMware Workstation 4.x (Linux)
VMware Player Pro 7.x (Linux)
VMware Server 1.0.x (Linux)
VMware Player 1.x (Linux)
VMware Player 6.x (Windows)
VMware Fusion 6.x
VMware Workstation Pro 12.x (Linux)
VMware Workstation 6.x (Windows)
VMware Workstation 8.x (Windows)
VMware Workstation 5.x (Windows)
VMware GSX Server 2.x (Linux)
VMware Workstation 7.x (Windows)
VMware Workstation 7.x (Linux)
VMware Player 4.x (Linux)
VMware Workstation Player 12.x (Windows)
VMware Workstation 6.x (Linux)

Resolution

After you increase the VM's hard disk size from Edit Settings, you must present this change to the internal Guest OS by following the below steps.

To extend the logical volume:
 
Caution: VMware recommends to take a complete backup of the virtual machine prior to 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 on the output of the partition table print.
    6. Press Enter two times.
    7. Press t to change the system's partition ID.
    8. Press 3 to select the newly creation partition.
    9. Type 8e to change the Hex Code of the partition for Linux LVM.
    10. 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 8e type:

    # fdisk -l
     
  8. 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
     
  9. Run this command to extend the physical volume:

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

    Note: Additionally, for the remainder of the commands, VolGroup00 will be unique to each Guest and should be adjusted to reflect your specific VM.

    # vgextend VolGroup00 /dev/sda3
     
  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:

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

    # 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.
     
  12. Run the following command to expand the ext3 filesystem online, inside of the Logical Volume:

    Note:
    • Use resize2fs instead of ext2online for non-Red Hat virtual machines.
    • Use xfs_growfs for Red Hat, CentOS 7 and other VM Guest OS types that use the XFS file system.
# ext2online /dev/VolGroup00/LogVol00
 
  1. Run the following command to verify that the / filesystem has the new space available:

    # df -h /

Note: Defer to Red Hat or Cent OS for maximum size for logical volumes based on OS versions.

Additional Information

For more information, see The Linux Logical Volume Manager from Redhat.
 
Note: The preceding link was correct as of January 29, 2014. If you find the link is broken, please provide feedback and a VMware employee will update the link.
Note: If the extended vmdk does not reflect the new size under Linux guest OS, rescan SCSI device using the following command:

echo 1 > /sys/block/$DEVICE/device/rescan where $DEVICE is 'sda'

For example:

echo 1 > /sys/block/sda/device/rescan
Increasing the size of a virtual disk
Como estender um volume lógico em uma máquina virtual executando o Red Hat ou Cent OS
Extensión de un volumen lógico en una máquina virtual con Red Hat o SO Cent
在运行 Red Hat 或 Cent OS 的虚拟机中扩展逻辑卷
Red Hat または Cent OS を実行している仮想マシン内の論理ボリュームの拡張