Search results

  1. B

    unsupported debian version '14'

    Also, this link might be useful for the future: https://wiki.debian.org/DontBreakDebian
  2. B

    unsupported debian version '14'

    Because apt will upgrade things to the newest version it finds in the configured repositories. It can't read your mind you know. Recovery from this will be a bit difficult, might be easier to just re-install the container. Then learn about apt pinning. Or that. Or from Debian backports (which...
  3. B

    [SOLVED] Cannot boot past BIOS after Proxmox 9 upgrade

    BIOS time should be set to UTC for Proxmox, not local time (unless your time zone is UTC). Don't know about your other issues.
  4. B

    Trying to install glances to pve9 - urllib3 problem

    That's because you have an old service unit for the one you compiled yourself (Debian never puts anything in /usr/local, that's strictly for the admin). I would uninstall both versions and reinstall the Debain one. This is why you never install things manually if it can be helped. ETA: Never...
  5. B

    Suddenly cannot boot

    Have you tried just hitting the ENTER key? Or just typing "root" and your password? It looks like it is actually booting and showing the login screen.
  6. B

    Trying to install glances to pve9 - urllib3 problem

    Is there a reason you can't just "apt install glances"?
  7. B

    Microsoft licensing and Proxmox cluster CPU core counts

    Regardless of your feelings about Microsoft, they are the authority on their own licenses, not us random people on the Internet. ETA: It is Microsoft that might sue you, so you should get the answer from them or from a reseller in writing.
  8. B

    [SOLVED] Hight rate of dns queries for PBS from PVE

    Yes, it sounds easy, but it complicates the logic. There are lots of ways for a network connection to fail, various cases to handle. Maybe the target is on a round-robin DNS so you _should_ do the query each time for that to work right, to give one example of a failure case you may not have...
  9. B

    [SOLVED] Hight rate of dns queries for PBS from PVE

    It is absolutely completely unimportant. Even a microcontroller can handle hundreds of requests per second. The reason it looks "weird" is that your network is trivially small.
  10. B

    [SOLVED] Hight rate of dns queries for PBS from PVE

    Does this mean you will be back here later asking why your graphs have 1-hour gaps?
  11. B

    [SOLVED] Hight rate of dns queries for PBS from PVE

    There are 86400 seconds in a day, so that is less than one per second. One request per second is a "heavy load"? WTH?
  12. B

    [SOLVED] Hight rate of dns queries for PBS from PVE

    So PVE sends 0.4 request/sec, x2 = 0.8 request/sec. If that is 40% of your DNS traffic, then we're talking 2 requests/sec in total. Truly an enterprise-grade setup. How will your server withstand the onslaught. What is it, an Altair 8080 or something? BTW, have you noticed how Windows behaves...
  13. B

    Upgrade PVE 8 to 9, Migration of VM no more possible due to key error

    That file was added by the IPA tools when you joined your PVE to the IPA domain. I've got the same error on a couple of Debian machines that were upgraded to Trixie. What I did is remove the knownhostsproxy lines while keeping the rest. That's been working for months now.
  14. B

    Debian 13 LXC Template

    Debian 13 isn't even released yet. Magic 8-ball says try again later.
  15. B

    AMD Ryzen AI Max+ 395 / Radeon 8060S Support

    Just to elaborate a bit, I've been pretty pleased with the Linux support on the FW 13 laptop. I've got the AMD one and they officially support a number of distros on it, which I took as a good sign. Debian Bookworm isn't one of them but I've been running it for a year with good success. I used...
  16. B

    AMD Ryzen AI Max+ 395 / Radeon 8060S Support

    I'll let you know when I get mine. I don't think any been delivered to customers yet. They are saying Q3, which just started a few days ago.
  17. B

    cannot shutdown vm

    That's what Stop is for.
  18. B

    Change existing VM From i440fx to Q35

    If the guest is Linux you probably can just change it. If it is Windows you may need to repair afterward. Why do you think you need to change them?
  19. B

    Proxmox freezes during backup when CIFS storage is full – how to prevent?

    Is hard because of compression. It is difficult to know up-front how big the final archive will be. Making assumptions will lead to wrong answers and user grief (in both directions). Is unsafe because if the new backup fails you are down by one. Best practice is for the administrator to make...