Search results

  1. B

    Proxmox GUI in Chrome - connection refused when using hostname, not IP. works fine in firefox

    Most likely Chrome is not using the DNS you expect. Is Settings>Privacy>Use Secure DNS enabled? If so, try turning it off. You might also want to look at the DNS page in chrome://net-internals and see how it is doing DNS resolution.
  2. B

    Updated/upgraded Just Now

    This is the main problem I think: cannot copy extracted data for './lib/modules/6.8.12-10-pve/kernel/net/tipc/tipc.ko' to '/lib/modules/6.8.12-10-pve/kernel/net/tipc/tipc.ko.dpkg-new': failed to write (No space left on device) You need to clean up something to make space. This will also lead...
  3. B

    [SOLVED] Windows VM high unreported RAM usage

    Passing a PCI device into a VM requires that all VM memory be preallocated on startup because such devices can do DMA to or from any memory address.
  4. B

    making mp's migratable (virtiofs on pve managed paths only)

    Of course. If you use Kerberos+NFSv4 then you have mitigated that particular class of attack. You seemed to be saying that such attacks can't work even with traditional non-Kerberized NFS if other unspecified things are in place. You very much cannot assume that. In such a case it is "hacking...
  5. B

    making mp's migratable (virtiofs on pve managed paths only)

    I was responding to the specific statement you made: That is simply not true for "traditional" NFS without Kerberos. Getting root on the server is a "hacking 101" exercise, not something that is "HIGHLY speculative". It is a well-known attack! So I agree with you that if you want to use...
  6. B

    making mp's migratable (virtiofs on pve managed paths only)

    Not really. Traditional NFS trusts the client to provide correct information about things like the user ID (UID). One obvious attack @Johannes S slides point out is someone with root on their device creating an account with the same UID as another user. Then mount the share and su to the other...
  7. B

    How to make a linux Xorg based os recognize or use multiple screens without a graphic card?

    You seem to be stuck on trying to set up an emulated display for X to use, presumably because the remote access software you've chosen basically does "screen scraping" on an existing desktop. It grabs the current screen and encodes it for remote viewing. Ergo for multiple monitors to work you...
  8. B

    lxc not really "protected" by oom

    First, the restoration of stability after the OOM-kill kills something is very much not guaranteed. It is more of a hope. We are out of memory, maybe killing something will help. Often it works. Sometimes things just get worse. I don't know why you think stability will necessarily be restored...
  9. B

    lxc not really "protected" by oom

    What does "frozen" mean? Can you log in to the container with SSH or pct enter? In any case, the behavior when something is killed by out of memory is not defined. It depends entirely on what kind of system is in the container, what the dead part was responsible for, etc. As well as on what...
  10. B

    lxc not really "protected" by oom

    There are theoretical efficiencies, yes. But if it doesn't work efficiency is zero, right? Do you have something to do with a little bit of extra memory? Do you restart the machine a lot? In other words, does this slight gain in efficiency actually matter for your use-case? Do they give only 4...
  11. B

    lxc not really "protected" by oom

    The OOM-killer is killing a PHP process in the container. You either running low on system memory or your container processes are exceeding the limit you set. Unlike a VM, the host does not view a container as a single process. It is a collection of normal processes running in a jail. The...
  12. B

    Unable to disable simple-framebuffer on the host

    The only idea I have is to try the optional 6.11 kernel and see if that detects your GPU.
  13. B

    Unable to disable simple-framebuffer on the host

    Some questions: I guess this is an N100/150? Perhaps you could provide more HW details? Have you tried just doing 'modprobe i915? Any errors? For comparison's sake, I have a Beelink N100 mini-pc. It has this GPU: 00:02.0 VGA compatible controller [0300]: Intel Corporation Alder Lake-N [UHD...
  14. B

    cfg80211: failed to load regulatory.db

    It isn't needed and nothing is broken if you aren't using wifi. The kernel has a generic wifi layer that is separate from the card drivers and that's where the regulatory checks happen. If wifi is enabled in the kernel the generic layer gets loaded before the drivers. The fact that you have...
  15. B

    how to enable a BE202NGW device

    Besides firmware, wifi 7 is very, very, new. As in only a few months old. It could be that the iwlwifi driver in the PVE kernel doesn't support it yet. I have a Framework laptop and someone on their forum got a Qualcom card working with kernel 6.12, but 6.11 is the newest PVE kernel last I checked.
  16. B

    how to enable a BE202NGW device

    I was not able to log in to my PVE earlier. Now I can it it appears that the pve-firmware package is installed by default and conflicts with the Debian ones. I didn't realize that. In looking at your initial post, it looks like it is loading some firmware. Maybe too old? Not sure. You can get...
  17. B

    how to enable a BE202NGW device

    I should also add that the recommendation from Proxmox is to not use wifi as your primary interface. The reason is that you generally can't bridge wifi. See the relevant chapter in the PVE manual, which is linked at the top right of the PVE main screen. https://pve.proxmox.com/wiki/WLAN Here...
  18. B

    how to enable a BE202NGW device

    Have you installed firmware-iwlwifi package? ETA: On the other hand, this card must be very new as it claims to be wifi 7. You might have to get the firmware from kernel.org or Intel. It almost certainly isn't in the Debian stable packages.
  19. B

    Proxmox and Eaton IPP (shutdown VM before server is shutdown)

    PVE should do that automatically if you just use the regular shutdown command.
  20. B

    Excessive amount of DNS queries to domainname of metric server

    Not by default, no. There are DNS caching daemons you can install via apt if it really bothers you. Then you will find out the subtleties of that. It isn't as obvious as you clearly think. And the queries will still be made, they just won't go over the network. One query per two seconds on...