Recent content by readyspace

  1. readyspace

    zpool gets deadman status after trying to use it for a while

    A few stray checksum errors right after replacing a bad cable can be normal — ZFS is still verifying and repairing blocks that were previously affected. Run another zpool scrub and monitor if the CKSUM count stays stable or resets to zero. If new errors keep appearing after multiple scrubs, it...
  2. readyspace

    Cluster Issues

    Yeah — that behavior pretty much screams Corosync identity or network conflict, not hardware. When two nodes work fine but adding a third (or fourth) causes the whole cluster to fall apart, it’s usually one of these: 1. Duplicate nodeid or ring0_addr entries in /etc/pve/corosync.conf (worth...
  3. readyspace

    USB Lan Adapter

    @luke94x i think it was due to underpower. After you turned on the power on USB, it worked.
  4. readyspace

    How to Reduce SSD Wearout in Proxmox?

    @verishare , you've heard the guys above saying. And I totally agree, just buy enterprise SSD. ;)
  5. readyspace

    Mount Point - Files exist within LXC, but not host

    Yep, that’s actually normal — it’s how unprivileged LXC containers isolate files. The container’s root is mapped to a high UID range on the host (like 101000+), so files written from inside can look “hidden” or owned by unknown users outside. It’s a security feature, not a bug. Your fix worked...
  6. readyspace

    Win11 Autopilot TPM attestestation timed out

    Looks like the issue is caused by volatile EFI/TPM devices — OVMF loses the TPM state after save, so Secure Boot and attestation can’t complete. Please try recreating both efidisk0 and tpmstate0 on a persistent storage pool (not volatile:). Then enable Secure Boot again in the EFI menu. This...
  7. readyspace

    Mount Point - Files exist within LXC, but not host

    Hi, glad it’s sorted. The root cause was indeed UID/GID mapping mismatch — when files were written by the host, they got ownerships outside the container’s mapped range, making them effectively invisible from inside unprivileged LXCs. Copying from within the container re-applied correct mapped...
  8. readyspace

    Web login and SSH broken after upgrade from 8.4 to 9.x

    Based on the error, it means enp1s0 is still configured as a normal interface instead of being in manual mode, so it can’t be used as a bridge port. Edit /etc/network/interfaces, remove any IP lines under enp1s0, and make it look like this: auto enp1s0 iface enp1s0 inet manual auto vmbr0 iface...
  9. readyspace

    Win11 Autopilot TPM attestestation timed out

    Hi, it seems like a TPM attestation issue caused by how QEMU emulates TPM 2.0 in Proxmox. Try switching your VM’s TPM device to version=v2.0,model=crb and ensure Secure Boot is enabled with Microsoft keys (not pre-enrolled-keys=1). Also make sure your guest clock syncs early via the QEMU guest...
  10. readyspace

    config issue with multiple VLAN and cisco device

    Hi, think you need to do some adjustments 1. Change bond-mode from balance-rr to 802.3ad (LACP) so it matches your Cisco trunk. 2. On the switch, make sure VLANs 20, 30, 110 are allowed on that trunk. 3. Keep only vmbr0 and set VLAN tags per VM (remove vmbr0.30 unless the host needs an IP there).
  11. readyspace

    Strange problem with fan speed (ACPI?)

    Can you try this? Try installing on your Proxmox node: apt install thermald acpid systemctl enable --now thermald acpid Reboot and check if /sys/class/thermal/ updates dynamically See if it works after.
  12. readyspace

    How to Reduce SSD Wearout in Proxmox?

    Here are just some of my own thoughts for your reference. I would, stick with ext4 on the WD Blue HDD — ZFS adds extra RAM and CPU load with little gain on a single disk. Keep SSD for OS and active VMs, and use the HDD for logs, swap, backups, or low-priority containers. Don’t mix SSD + HDD in...
  13. readyspace

    [SDN] PVE01 does not correctly generate ln/pr interfaces in /etc/network/interfaces.d/sdn

    Hi, based on your description, i'm guessing that your PVE01’s SDN state got out of sync with the cluster. In this case, try removing cached configs under /var/lib/pve-sdn and restart pve-sdn to force regeneration. Also verify /etc/network/interfaces wasn’t edited manually — that can block SDN...
  14. readyspace

    [SOLVED] Nvidia L40S GPU PCI Pass-through BAR0 Error

    The error messages suggest that the guest driver can’t access the GPU’s memory space and is falling back to 0x0. Please check and try... make sure your VM uses machine: q35 with pcie=1, and that “Above 4G Decoding” and “Resizable BAR” are enabled in BIOS. Confirm vfio-pci is bound to...