You can grow a Block Storage volume from its current size up to the 5 TB maximum at any time. The resize is online — the volume stays attached to the server while it grows. After the platform-side resize completes, you extend the filesystem inside the guest so the OS can use the new space.
Block Storage volumes only grow. Shrinking is not supported. To reduce capacity, create a smaller volume, copy your data over, and delete the old one.
On the Overview tab, click Resize (in the volume’s action menu / kebab on the volume detail page).
At this point the block device is larger, but the filesystem inside the guest still reports the old size. Continue with the steps below to grow the filesystem.
SSH into the server and run the appropriate commands for your filesystem.
If you placed the volume in an LVM physical volume, you have one extra step:
After the filesystem grow, df -h /mnt/data should report the new capacity.
Both should reflect the new size.
resize2fs is for ext2/3/4; xfs_growfs is for XFS. Running the wrong tool fails safely but wastes time.Resize button is disabled The chosen size isn’t larger than the current size, or you’ve hit the 5 TB cap. Pick a strictly larger value within the limit.
Block device shows new size but df -h still shows old size
You haven’t grown the filesystem yet. Run resize2fs (ext4) or xfs_growfs (XFS) — the section above.
resize2fs: Bad magic number in super-block
You ran resize2fs on a non-ext filesystem. Check the filesystem type with lsblk -f /dev/vdc or sudo blkid /dev/vdc and use the matching grow command.
Resize stuck in the portal Refresh the volume page. If it doesn’t return to In Use / Ready within a couple of minutes, contact IBEE support.
Need to shrink
Create a new, smaller volume, attach it to the server, copy the data over (rsync -aHAX), update mounts, then detach and delete the original.