@Tarek Damak
Then you need to boot from rescue disc and resize ext4 file system.
I always try to use xfs for similar tasks as you can extend it on the fly (no shrinking available though!).
The link may be helpful: https://artofawareness.wordpress.com/2017/03/06/proxmox-remove-lvm-local-data/
Should be "resize2fs /dev/mapper/pve-root", not need to boot from live rescue disk.Is there a command to accomplish this from a live rescue disc? I booted into gparted, didn't see any ext4 filesystem resizing options, so I tried the `resize2fs /sda3/dev/mapper/pve-root` command provided in your link, but my arguments or paths must not be valid.
@Tarek Damak
If you have VMs deployed in local-lvm - then yes, you'll lose them. If you have your VMs deployed in local - then you're safe.
You can do the following:
- delete local-lvm storage in gui
- lvremove /dev/pve/data
- lvresize -l +100%FREE /dev/pve/root
Then you need to boot from rescue disc and resize ext4 file system.
I always try to use xfs for similar tasks as you can extend it on the fly (no shrinking available though!).
The link may be helpful: https://artofawareness.wordpress.com/2017/03/06/proxmox-remove-lvm-local-data/
Cheers
Should be "resize2fs /dev/mapper/pve-root", not need to boot from live rescue disk.
#lvresize -l +100%FREE /dev/pve/root
gives me the same storage output could it be the 25% of the total space?#lvremove /dev/pve/data
#lvresize -l +100%FREE /dev/pve/root
get the exact same storage size i had before i ran all these commands) #lvresize -l +100%FREE /dev/pve/root
#lvresize -l +100%FREE /dev/pve/root
runs Screen shot 2 takes place instead of screen shot 3 .Worked! Thank you very much!Should be "resize2fs /dev/mapper/pve-root", not need to boot from live rescue disk.