How to Resizing EXAVMIMAGES File System
The objective is to expand the size of the /EXAVMIMAGES file system using the provided instructions:
- Check the current size of the /EXAVMIMAGES file system:
# df -h /EXAVMIMAGES
- Verify the volume group (VG) details:
# vgdisplay -s
- Extend the logical volume (LV) named LVDbExaVMImages with 15% free space within the VGExaDb volume group:
# lvextend -l +15%FREE /dev/VGExaDb/LVDbExaVMImages
- Expand the XFS file system on /EXAVMIMAGES to accommodate the newly allocated space:
# xfs_growfs /EXAVMIMAGES
- 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.
No comments:
Post a Comment