Pages

Thursday, May 20, 2021

How to Resizing EXAVMIMAGES File System

 How to Resizing EXAVMIMAGES File System

The objective is to expand the size of the /EXAVMIMAGES file system using the provided instructions:

  1. Check the current size of the /EXAVMIMAGES file system:

# df -h /EXAVMIMAGES

  1. Verify the volume group (VG) details:

# vgdisplay -s

  1. Extend the logical volume (LV) named LVDbExaVMImages with 15% free space within the VGExaDb volume group:

# lvextend -l +15%FREE /dev/VGExaDb/LVDbExaVMImages

  1. Expand the XFS file system on /EXAVMIMAGES to accommodate the newly allocated space:

# xfs_growfs /EXAVMIMAGES

  1. Confirm the updated size of the /EXAVMIMAGES file system:

# df -h /EXAVMIMAGES

Note: The procedure aims to increase the size of the /EXAVMIMAGES file system by extending the logical volume and growing the XFS file system accordingly.