# allocate more space on hypervisor
# make the partition see the space (dev/sda3, Resize, Write, quit)
sudo cfdisk
# extend the physical volume from the partition
sudo pvresize /dev/sda3
# extend LV to use up all space from VG
sudo lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv
# resize file system
sudo resize2fs /dev/ubuntu-vg/ubuntu-lv
# check can see the space on filesystem
df -h
Passthru Disk to VM
Check drives and show model and serial
lsblk -o +MODEL,SERIAL,WWN
grab disk id
ls -l /dev/disk/by-id
qm set 107 -scsi1 /dev/disk/by-id/ata-Samsung_SSD_870_QVO_2TB_S6R4NJ0W401819L
The SATA ribbon cable broke in my mini PC and I was able to swap out for a USB to SATA connector with the ID below I found with the found from the command above.
usb-Samsung_SSD_870_QVO_2TB_0123456789ABCDEF-0:0
You can swap this out in the conf file:
nano /etc/pve/qemu-server/###.conf
Mount CIFS/SMB
This is not working currently will update soon from other notes