Resizing a block volume

Resizing the OS volume

The OS volume is resized automatically after the next system start. Please make sure you perform shutdown from the cloud dashboard in order for the change in volume size to be detected during start-up.

Resizing other block volumes

Run these commands on your instance to resize the non-OS volume.

Replace <TARGET> with the volume target e.g. vdb.

Instructions for EXT4 filesystem (default)

If partitioned (e.g. with OS volumes), that are also ext4 by default. The default partition number is 1):

growpart /dev/<TARGET> <PARTITION_NUMBER>
resize2fs /dev/<TARGET><PARTITION_NUMBER>

If not partitioned:

resize2fs /dev/<TARGET>

Instructions for XFS filesystem

Same process as in Instructions for EXT4 filesystem (default), but replace resize2fs with xfs_growfs:

xfs_growfs /dev/<TARGET>

Useful commands

To check if the volume is partitioned use:

lsblk

To check the filesystem type use:

df -hT

Last updated

Was this helpful?