How to increase /dev/sda4 partition space in LCM
search cancel

How to increase /dev/sda4 partition space in LCM

book

Article ID: 430047

calendar_today

Updated On:

Products

VCF Operations/Automation (formerly VMware Aria Suite)

Issue/Introduction

This Article provides instructions on how to increase the /dev/sda4 partition space in LCM 

Environment

Aria Suite Lifecycle 8.18

Resolution

Remove any existing snapshot on the LCM VM. Shutdown the VM and increase the size of the Hard disk1. Power on the VM and take snapshot before proceeding to below steps which will resize the partition.

Extend the root partition by following steps below:

1. Invoke partitioning tool (menu-driven interface) by running the below command.

# cfdisk /dev/sda

Note: This step is applicable only for the root partition:

2. Using arrow keys select /dev/sda4

3. Using tab key Or shift tab select [ Resize ] then enter
4. Enter the New Disk Size to Expand the Root Partition

  • Note:  start by checking how much free space is available on /dev/sda. Next, make sure the new disk size is larger than the current root partition. For example, if you plan to add additional 10 GB, the new total size should be the ( current root partition size +  10 GB ) which should be available in free space.

5. Using tab key select [ Write ]

6. type "yes"

7. Press tab to [ Quit ]

8. Next, you must resize the file system with "resize2fs" to use the new space:

[before resize2fs]
# df -h | grep "sda4"
/dev/sda4 8.8G 3.9G 4.5G 47% /

[run resize2fs]
# resize2fs /dev/sda4

[after resize2fs]
# df -h | grep "sda4"
/dev/sda4 12G 3.9G 7.3G 35% /

9. Run 'df -h' command to verify the allocated space.