Resources#
Instructions#
- Identify partitions with the
lsblk command - Determine the volume group you want to extend using the
vgs and vgdisplay commands - Determine the logical volumes using
lvs command - Determine the mapping of the logical volume (/dev/[VG-NAME]/[lv name])
- Extend the partition (
cfdisk) - Extend the physical volume:
pvresize /dev/sd[your partition]
- Extend the logical volume :```
lvextend -r -l +100%FREE /dev/mapper/VG-NAME --lv NAME
- (Possibly) Extend the file system (varies by file system type):
xfs_growfs /dev/mapper/VG-NAME --lv name
Extend a Proxmox VM Disk#
- In the virtual machine hardware tab, select the disk you wish to resize and click “Disk Action” then “Resize”