-
Open VMware Infrastructure (VI) Client and connect to VirtualCenter or the ESX host.
-
Right-click the virtual machine.
-
Click Edit Settings.
-
Select Virtual Disk.
-
Increase the size of the disk.Note: If this option is greyed out, the disk may be running on snapshots or the disk may be at the maximum allowed size depending on the block size of the datastore.
Extending a virtual disk only extends a virtual machine’s disk. This does not automatically increase the size of the file system (such as NTFS for Windows and ext3 for Linux) within the guest. The virtual disk may have unallocated space that you now want to use. You may also have increased the size of a virtual machine’s virtual disk but are unable to see the new space from the virtual machine’s operating system.
Extending a Linux guest file system
If the Linux virtual machine has an ext3 file system under the control of Logical Volume Manager (LVM) control then there are LVM tools to allow the file system to be extended.
If you are running a file system other then ext3, you may need to research an alternative way of accomplishing this. Reiser has its own tool for accomplishing this, GParted Live CD is another popular tool for this.
-
Power off the virtual machine.
-
Edit the virtual machine settings and extend the virtual disk size.
-
Power on the virtual machine.
-
Identify the device name, which is by default /dev/sda, and confirm the new size by running the command:
# fdisk -l
-
Create a new primary partition:
- Run the command:
# 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 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.
- Run the command:
- Restart the virtual machine.
-
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 -
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
-
Run this command to extend the physical volume:# vgextend VG-System /dev/sda3
Note: To determine which volume group to extend, use the command vgdisplay.
-
Run this command to verify how many physical extents are available to the Volume Group:
# vgdisplay VG-System | grep “Free”
-
Run the following command to extend the Logical Volume:# lvextend -L+#G /dev/mapper/VG-System-root
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.
-
Run the following command to expand the ext3 filesystem online, inside of the Logical Volume:
# resize2fs /dev/mapper/VG-System-root -
Run the following command to verify that the / filesystem has the new space available:
# df -h /
Source: kb.vmware.com