This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| resizevmdisk [2021/08/27 20:33] – alexk7110 | resizevmdisk [2021/08/28 10:51] (current) – alexk7110 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Resizing LVM on Proxmox ====== | + | ====== Resizing LVM on Proxmox ===== |
| + | * First you resize the VM disk offline on Proxmox | ||
| + | * Boot the VM and enter the following in a shell: | ||
| + | <code bash> | ||
| + | sudo su | ||
| - | First you resize | + | # Check sda or vda or any other disk you wish to resize |
| - | Boot the VM and enter it: | + | fdisk -l /dev/sda |
| - | sudo su | + | # There will be a red message mentioning the resize |
| - | + | # Use parted now so it asks for a fix | |
| - | | + | parted /dev/sda |
| - | + | ||
| - | | + | > Answer: Fix |
| - | + | > resize part 3 100% | |
| - | > Answer: Fix | + | > quit |
| - | > resize part 3 100% | + | |
| - | > quit | + | # Next you resize the physical volume of the last partition if available |
| - | + | pvresize /dev/sda3 | |
| - | # pvresize /dev/sda3 | + | # Then you resize the logical volume to occupy the rest of the drive |
| - | # lvresize --extents +100%FREE --resizefs / | + | lvresize --extents +100%FREE --resizefs / |
| + | </ | ||
| + | * Take a breath, it's done. | ||
| + | * I should read up on LVM management. | ||
| - | Take a breath, it's done. | ||
| - | I should read up on LVM management. | ||