Thanks, your clarity of expression has me thinking that I have the picture.
I like the idea of reserving room for swap to add later. I haven’t had any situation where the 12G of ram has been insufficient but just in case, that seems like the way to go.
So I gather the first step is “to extend the “root” lv to include the remaining free space of the /dev/sda3 PV”
Is that something that can be done from the terminal I use inside cockpit?
Looking for how to extend “root” I came across this “To extend the size of a local volume root LVM, you need to first attach the new storage, create a Physical Volume (PV) from that storage, add the PV to the Volume Group (VG), and then extend the Logical Volume (LV).”
My hunch is we already have the storage attached and have the physical volume created leaving extending the Logical Volume?
The command I found suggested is
lvextend -l +100%FREE /dev/your_vg_name/root
I have
-added sudo
-changed it to 93% free to leave the swap space available
-changed “your-vg-name” to sda3
sudo lvextend -l +93%FREE /dev/sda3/root
Does that look like I am on the right track?
Then to resize the the partition I see suggested using:
xfs_growfs /dev/your_vg_name/root
but is xfs right for an ext4 filesytem? If so, is this right?
xfs_growfs /dev/sda3/root
As you can tell I rely on the “no such thing as a stupid question” theory ![]()
Thanks for your help with this.
KenW