Proxmox - Increase disk space

Proxmox - Increase disk space

In the proxmox UI select the following steps:

proxmox_virtual_environment.png

Introduce the amount of extra space required:

proxmox_virtual_environment2.png

Access the shell via SSH or console in proxmox and run the below commands:

Check for the Disk/Partition to increase:

sudo lsblk -o NAME,TYPE

This means we will increase the partition size for the /dev/sda for partition 2

sudo growpart /dev/sda 2

Finally we will set to utilize the full extend of the size for that partition:

sudo resize2fs /dev/sda2