Search results

  1. B

    Proxmox VE on Intel Pentium G2020, 4GB?

    Why is managing Ubuntu remotely "troublesome" to you? Perhaps someone can help you fix that. Do you have an SSH server installed? Managing remotely by command line is much simpler than using RDP or whatever remote desktop things.
  2. B

    Temporary failure in name resolution - Help Needed

    Just FYI, I have a bunch of Debian machines, both VM's and hardware, behind an OpenWRT 24.01 router, all using the router's DNS. It works fine. Whatever's wrong isn't an inherent thing in Debian or OpenWRT. I don't currently have wireguard enabled though, so that's one difference. Did you...
  3. B

    Why is there no logrotate for messages and daemon.log ?

    I think if you upgraded from an earlier version that did use syslog you might end up with leftover log files in /var/log as well.
  4. B

    Can't connect to the PROMOX web UI through wifi

    If your use-case is to use VM's locally on your machine you might be better off with a desktop product like VirtualBox.
  5. B

    Can't connect to the PROMOX web UI through wifi

    PVE does not install wifi support tools by default because wifi is not really suitable for this purpose. With most access points you cannot bridge multiple VM's to one wifi interface. It is not "hard", it is not possible. So you need to set up IP routing with NAT. See here for some options. If...
  6. B

    Proxmox 9 Kernel and Ubuntu 25.04?

    User space will likely be based on Debian 13 but they use Ubuntu kernels because Debian doesn't integrate ZFS.
  7. B

    Podman inside unprivileged Alpine container fails to start

    If you are going to do a thing that isn't recommended by the people who made the software, you don't get to yell about the lack of documentation of how to do that thing. You also need to look into the actual purpose of the "nesting" feature, which isn't for what you think it is for.
  8. 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.
  9. 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...
  10. 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.
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  19. 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.
  20. 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...