Search results

  1. sterzy

    [SOLVED] "The 'Remove' button in the Proxmox web GUI is not functioning.

    That works just fine for me, can you share the whole configuration of the guest as well as pveversion --verbose? Also, if you open the browser's console do you see any errors?
  2. sterzy

    [SOLVED] Mail Filter / Regular expression error

    Well, probably yeah, otherwise they probably don't do what you expect them to do.
  3. sterzy

    [SOLVED] Mail Filter / Regular expression error

    We added a check to see if your regex is valid with PMG 8, so this regex never really worked, the check just didn't exist. What you could do is this: .*domain\.ext. .* will match any letter or digit zero or multiple times. You'll also need to escape the . as otherwise it matches any character...
  4. sterzy

    [SOLVED] Mail Filter / Regular expression error

    Well ^* does not really make sense as a regex. * is a quantifier and needs something to quantify. It matches whatever is before it zero to many times. ^ just matches the beginnings of lines so this can only be matched ones per line. What is it that you want to match with your regex?
  5. sterzy

    Subscription Plan - PVE Cluster mit 2 Nodes

    Nein, dann werden beide Nodes als Community behandelt. In einem Cluster gilt immer das niedrigste Subscription Level für alle. Ist dieser PVE Host Teil desselben Clusters? Das wäre kein sinnvolles Setup. Schon gar nicht in einem produktiven Umfeld. Für das QDevice selbst wird keine...
  6. sterzy

    Networking SDN Roadmap

    Well, we have made some bad experiences with it over the years and often using OVS had very few benefits. Could you point out some of these features? That might help with understanding where you are coming from.
  7. sterzy

    Performance tools and testing

    iotop should give some insight into this [1]. [1]: https://manpages.debian.org/testing/iotop/iotop.8.en.html
  8. sterzy

    Network Interface Card not showing in Proxmox Node Network

    Well, it will depend on the VMs in question, but you should be able to follow our PCI Passthrough guide here [1]. [1]: https://pve.proxmox.com/wiki/PCI_Passthrough
  9. sterzy

    Will there be a function in proxmox, analogous to the function in esxi VMware vSphere Fault Tolerance

    QEMU provides such functionality under the name COLO (for "COarse-grained LOck-stepping") [1]. But last time we looked at it, it wasn't quite ready for prime time to my knowledge. [1]: https://wiki.qemu.org/Features/COLO
  10. sterzy

    Network Interface Card not showing in Proxmox Node Network

    These devices seem to currently be assigned the vfio-pci driver [1]. This is usually the case when you provide a PCI device as a virtual function to a VM. I am generally not familiar with these devices, but what do you intend to do with them? [1]...
  11. sterzy

    Network Interface Card not showing in Proxmox Node Network

    Hey, can you run the command lspci -nnk and post the output? Preferably as text between tags :)
  12. sterzy

    (Developer) question about .chunk folder

    You are trying to approximate the asymptotic growth in runtime of an algorithm relative to its input with one datapoint. Sorry, but this is entirely impossible, just ... mathematically. To elaborate, with just one data point both these file systems could be O(n) = n or whatever really just...
  13. sterzy

    Hyper-V Container import to Proxmox

    Nein, das ist vermutlich nicht sinnvoll. Allerdings könnten Sie ja das konvertierte VM Image einfach direkt auf den anderen Storage legen. Oder ist dieses größer als 4 TB?
  14. sterzy

    Hyper-V Container import to Proxmox

    Schon mal mit -O wie dem Buchstaben statt -0 wie der Zahl probiert? ;)
  15. sterzy

    [SOLVED] Proxmox Version 7.4 + ZFS schreibt viel auf die Festplatte

    Ohne genauere Informationen zu haben, würde ich mal darauf tippen, dass es sich hier um normale ZFS Write Amplification handelt. ZFS schreibt in den meisten Setups mehr Daten auf die Disk als in der VM beobachtet werden. Die Frage ist nur was der Faktor dieser Amplification ist und wie ZFS...
  16. sterzy

    [Feature Request] Vereinfachen des Speichermanagement

    An der Stelle wäre ein konkretes Beispiel vermutlich hilfreicher als diese abstrakte Diskussion. Jedes neue Produkt bringt eine gewisse Lernkurve mit sich. Wo wir sinnvolle Defaults vorgeben können, versuchen wir das so oder so zu machen. Ob lieber LVM, LVM-thin, ZFS, Ceph etc. verwendet wird...
  17. sterzy

    rule to block spam based on part of the text

    Matching the entire body tends to be rather inefficient. However, you could write your own Spamassassin rule [1] if you really need to. I'd make sure you follow our advice on improving spam detection rates first, though. That tends to be more successful in practice [2]. [1]...
  18. sterzy

    [Feature Request] Vereinfachen des Speichermanagement

    Der Punkt ist, dass das Deaktivieren solcher Automatismen bzw. Aktivieren eines Expert-modes dann der Definition nach schwieriger zu erreichen sein muss, als der einfach/automatisierte Modus. Dadurch kommt es für die Anwendeten die diesen bevorzugen zu einer de-facto Verschlechterung (mehr...
  19. sterzy

    Subscriptions

    Solche Frage sind grundsätzliche besser beim Shop untergebracht [1] :) In einem Cluster gilt immer das niedrigste Subscription Level für alle Nodes. Siehe Subscription Agreement 3.7 [2]. Sprich, wenn 2x Community und 1x Standard gekauft wird, dann gilt für alle Nodes nur das Community-Level...
  20. sterzy

    Proxmox installation failed

    This just means that the service in question couldn't start fast enough. journalctl -xeu pve-ha-crm.service should provide you with more information, please post the output of that command.