Help Center> Elastic Volume Service> FAQs> Capacity Expansion> How Do I Extend the Root Partition of a Quickly Provisioned BMS?
Updated on 2023-06-21 GMT+08:00

How Do I Extend the Root Partition of a Quickly Provisioned BMS?

Scenarios

If the root partition of your quickly provisioned BMS is too small, extend the root partition by referring to the following procedure.

This example uses CentOS 7.3 and system disk, /dev/sdf. The way you allocate additional space depends on the OS. This example is used for reference only. For detailed operations and differences, see the corresponding OS documentations.

In this example, the initial size of the BMS system disk (sdf) is 40 GiB and needs to be expanded to 140 GiB. The initial disk partitions are as follows:

Procedure

  1. Log in to the EVS console and expand the system disk capacity to 140 GiB.
  2. Log in to the BMS and run the following command to view the system disk capacity:

    lsblk

    Information similar to the following is displayed:

    The system disk (sdf) has been expanded from 40 GiB to 140 GiB. The sdf4 partition (64 MiB) is the configdriver partition that stores the BMS configuration information.

  3. Run the following command to back up the configdriver partition:

    dd if=/dev/sdf4 of=/root/configdriver.img

    Information similar to the following is displayed:

  4. Run the following command and delete the configdriver partition:

    fdisk /dev/sdf

  5. Run the partprobe command to update the partition information.

    If partition configdriver has been deleted, information similar to the following is displayed:

  6. Recreate the configdriver partition with 100 MB.

    If the available sectors range from 83755008 to 293601279, set 293401279 (293601279 – 200000) as the new partition's start sector and 293601279 (default value) as the end sector.

    Run the partprobe command to update the partition information.

  7. Run the following command to extend the root partition:

    growpart /dev/sdf 3

    Information similar to the following is displayed:

    Run the lsblk command to view the new root partition size.

  8. Run the following command to extend the file system of the root partition:

    resize2fs /dev/sdf3

    Information similar to the following is displayed:

  9. Run the following command to restore the content of the configdriver partition:

    dd if=/root/configdriver.img of=/dev/sdf4

    Information similar to the following is displayed:

    The root partition of the quickly provisioned BMS has been extended.

Capacity Expansion FAQs

more