Search results

  1. D

    Correct steps to reduce pve/data?

    @shanreich I did a similar mistake. I bought a new disk, create a new PV, add it to the existing vg (pve) and increase the existing LV(data). However I realized my table partition was incorrect as I created a dos partition limited to 2T (my disk is 4T). So I'd like to recreate it as GPT in...
  2. D

    [SOLVED] PVE 7.0 LXC Intel Quick Sync passtrough not working anymore

    @mrcolumbo I got same issue with privileged container. My HA in Jellyfin works properly except when I reboot the LXC. Group owner changed to postfix on /dev/dri/renderD128 only, to fix it I only make a script run at boot. Anyone else have a better/cleaner solution? lxc.cgroup2.devices.allow...
  3. D

    Shrink RAW Disk LVM

    Hey @justynnuff , The only workaround is to switch to convert my virtual disk to QCOW2 format then follow the Proxmox Documentation.
  4. D

    [SOLVED] udisksd using lots of CPU

    Hello Same here.. I don't know if it's related to my External HDDs: WD Digital and Seagate Expansion. I stop udisk, I hope there will not be a lot of side effects :rolleyes: NB: Version 6.4-13
  5. D

    Shrink RAW Disk LVM

    No worries, I had already a backup of my VM. I don't want to increase the VM disk but to shrink it. I already decreased inside the VM the LVM partition (see the last output in my first post) The issue is when I reduced the disk size in proxmox it will corrupt the VM partition saying that the...
  6. D

    Shrink RAW Disk LVM

    Any other idea ?
  7. D

    Shrink RAW Disk LVM

    The VM was already shutdown however I forgot to disable the partition with lvchange explaining the warning message. I also detached the disk before the operation. But it didn't change the result, the VM is corrupted and displayed the following message "the volume group is not found". The...
  8. D

    Shrink RAW Disk LVM

    Any update on this ?
  9. D

    Shrink RAW Disk LVM

    Hello, I'm trying to reduce the virtual disk défined in my local-lvm storage. I succeed to shrink properly inside the host the partition. I want to set vm-101-disk-0 to 10G. lvs -a LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert base-105-disk-0...
  10. D

    Fstrim & Discard on Raw Disk

    Thank you, yes I think about cron job but I was wondering if there is any other option to do it automatically and directly from PVE.
  11. D

    Fstrim & Discard on Raw Disk

    Hello Since I've enable a replication between a remote server and one of my VM I notice a constant increase of the storage. In fact, when I discovered it when I reach 100% of my Thin-provisionning capacity on the data pool. So after reading a couple of thread, I found that I need to enable...
  12. D

    Fstrim & Discard on RAW disk

    Hello Since I've enabled replication between a remote server and one of my VM I notice a constant increase of storage. In fact, when I discovered it when I reach 100% of my Thin-provisioning capacity on the data pool. So after reading a couple of threads, I found that I need to enable the...
  13. D

    fstrim and backup size

    Below VM config: boot: order=scsi0 cores: 2 memory: 4096 name: laura net0: virtio=4E:63:E8:31:F4:5D,bridge=vmbr0 numa: 0 onboot: 1 ostype: l26 scsi0: local-lvm:vm-100-disk-0,size=10G scsi1: local-lvm:vm-100-disk-1,backup=0,discard=on,size=650G scsi2: local-lvm:vm-100-disk-2,discard=on,size=11G...
  14. D

    fstrim and backup size

    Hello, I join this thread as I've similar experiences. I recently discovered discard option and fstrim command. I'm wondering about impact performance and life span of the HDD behind. For context, I'm running PVE 6.4-13 on NVMe with differents Ubuntu virtual machines, all of them use RAW disk...
  15. D

    Help needed for Using GPU passthrough on intel NUC

    Hello I'm stuck with the same hardware, did you find any solutions ?
  16. D

    [SOLVED] Bridged - No Port routing

    Thank you so much (I spend all my weekend on it !) I found it directly when I saw the IP ! It's because of my Wireguard VPN ! Now I've to understand why when I've the VPN, hosts can not be accessed :rolleyes:. EDIT: Apparently I'm not the only one, I've probably to do some NAT rules on VMs.
  17. D

    [SOLVED] Bridged - No Port routing

    Yes, sorry I will give more details VMs can ping the router (192.168.1.254). I agree for the path. yes my router is doing NAT indeed. My DNS from one of my VMs is systemd-resolved daemon : grep "nameserver" /etc/resolv.conf nameserver 127.0.0.53 I configured in /etc/systemd/resolved.conf...
  18. D

    [SOLVED] Bridged - No Port routing

    Hello I'm facing to a weird issue; I've the following configuration for my interfaces: auto lo iface lo inet loopback auto eno1 iface eno1 inet manual auto vmbr0 iface vmbr0 inet static address 192.168.1.70/24 gateway 192.168.1.254 bridge-ports eno1...