Docs / Server Management / How to Resize a Disk Partition After Upgrade

How to Resize a Disk Partition After Upgrade

By Admin · Feb 25, 2026 · Updated Apr 24, 2026 · 83 views · 1 min read

After upgrading your Breeze plan, you may need to expand your filesystem to use the additional disk space.

Check Current Disk Size

df -h
lsblk

Grow the Partition

For ext4 filesystems:

growpart /dev/sda 1
resize2fs /dev/sda1

For XFS filesystems (common on RHEL-based distros):

growpart /dev/sda 1
xfs_growfs /

Verify

df -h

The filesystem should now show the full disk size from your upgraded plan.

Was this article helpful?