Recent content by fireon

  1. fireon

    Recovery vom PBS bricht ab (Data blob has wrong CRC checksum)

    Hmm... das klingt für mich trotzdem ziemlich nach defektem Backup. Und eine Reverifizierung aller Versionen dieser VM läuft sauber durch? Gibt es vielleicht noch andere Versionen der VM-Backups/Snapshots auf dem PBS, die du versuchen kannst wieder herzustellen? Vielleicht ist ja nur die eine...
  2. fireon

    Guest Windows VM lost static IP after ugrade VirtIO drivers

    If you know in advance that this problem will occur, simply switch all interfaces to DHCP. After the update and reboot, after you can set a fixed IP again. However, if a fixed IP is still configured in the background, a winsock reset may also help: netsh winsock reset Then reboot the Windows...
  3. fireon

    2FA and Bitwarden Password Manager as WebAuthn

    If you would like you can create some feature request here: https://bugzilla.proxmox.com/
  4. fireon

    Subscription check behind proxy broken in PVE9

    Well, I thought that if you enter the IPs + FQDN in the hosts file as a workaround and only set the proxy for Apt, it might work for you too.
  5. fireon

    Subscription check behind proxy broken in PVE9

    I tested this. A pure Apt proxy works. If your DNS resolution isn't working, you can also make an entry in /etc/hosts as an additional workaround. I configured the proxy for Apt like this: /etc/apt/apt.conf.d/01proxy Acquire::http { Proxy "http://myProxy:3128"; }; The proxy you configure in...
  6. fireon

    Infoblox vm stuck on grub

    Please give us a bit more information: How did you install Infoblox? Which Proxmox version are you using? pveversion -v Please also post your VMconfig: qm config <vmid>
  7. fireon

    Subscription check behind proxy broken in PVE9

    It looks to me like Proxmox can't resolve the address. Can you resolve shop.proxmox.com? ping shop.proxmox.com Where did you enter the proxy server? http_proxy: http://.* Specify external http proxy which is used for downloads (example: http://username:password@host:port/) What's the host...
  8. fireon

    ZFS over iSCSI - Fehler

    Wichtig ist das für bereits existierende Storagesconfigs die Option "zfs-base-path" hinzugefügt wird, ansonsten bekommt man den gleiche Error wieder. z.B. zfs: zfs-over-iscsi01 blocksize 4k iscsiprovider LIO pool pool/targetcli portal 192.168.3.5 target...
  9. fireon

    Veeam error Failed to map disks (since upgrade v8 to v9)

    This refers to the Steamworker VM, not the VM that is to be restored. Or what exactly do you mean?
  10. fireon

    PBS 4 - Datastore Offline in PVE

    Very similar here: error fetching datastores - 500 Status read failed: Broken pipe
  11. fireon

    Windows virtualization with GPU passthrough

    Absolutly: https://forum.proxmox.com/threads/passthrough-rtx-5090-cpu-soft-bug-lockup-d3cold-to-d0-after-guest-shutdown.168424/ Basically YES. I've already looked at a few cards. My motto: “Always test.” And if possible, don't use consumer cards. An RTX A2000 → cheap and enterprise-ready. I...
  12. fireon

    HPE Prolait DL360 Gen9 - Raid

    Danke für die Info, bin der Zeit noch auf 2.3. Upgrade auf 2.4 ist leider etwas mehr arbeit, weil vie was ich nutze damit raus geflogen ist.
  13. fireon

    Converting physical server with RAID to Proxmox VM

    Do you know this Wiki article? https://pve.proxmox.com/wiki/Migrate_to_Proxmox_VE I've always had great success with Clonezilla. “dd” also always worked quite well. Please show us your VM configuration on Proxmox: qm config <vmid> What error message do you get when you start the VM?
  14. fireon

    Encrypt ZFS pool

    I did that for a while. To make it work, I changed the following file: nano /usr/share/perl5/PVE/Storage/ZFSPoolPlugin.pm - my $cmd = ['zfs', 'send', '-Rpv']; + my $cmd = ['zfs', 'send', '-Rpvw']; But after a while, there were damaged volumes. So I disabled it again. An alternative would be...