Recent content by luckyspiff

  1. L

    [SOLVED] DHCP Server (VM) liefert keine IP Adressen über vmbr0 an die physikalische Schnittstelle nach außen, intern funktioniert dieser (MS 01, INTEL I226 LM)

    Hallo Christoph, Das findet man in /var/log/dpkg.log* Das Paket, welches den Treiber enthält, findest Du mit ein paar Schritten, hab das mal hier für mein System gemacht, musst du natürlich mit ein paar Anpassungen machen: 1. Herausfinden welcher Treiber es überhaupt ist: lspci -knn | grep...
  2. L

    Proxmox VE 8.3 released!

    Musste leider doch zurück auf den 6.8.12-2-pve Kernel, da der aktuelle -4 Kern trotz BIOS-Update bei mir Probleme bereitet. Ein paar Mehr Infos dazu hab ich hier hinterlegt, sollte Bedarf an weiteren Infos bestehen, einfach melden, ansonsten probier ich irgendwann mal einen neueren Kernel...
  3. L

    PVE-Manager degraded - pve-cluster.service Fehler und /etc/pve leer

    Ich habe nun nach "apt reinstall proxmox-kernel-6.8.12-4-pve-signed" und einem Reboot wieder ein gemountetes /etc/pve/ Verzeichnis mit meiner Container-Konfiguration, bin also einen Schritt weiter. Allerdings läuft der pvedaemon immer noch nicht, hier die Ausgabe von systemctl status...
  4. L

    PVE-Manager degraded - pve-cluster.service Fehler und /etc/pve leer

    Hallo, ich habe heute mein Proxmox auf 8.3 aktualisiert und zunächst das Problem, dass ich nicht mehr mit SSH auf den Server kam (ein segfault im sshd-Prozess war im Log zu sehen). Das Proxmox Web-UI ging und alle Dienste gingen aber noch und nachdem ich den Kernel von 6.8.12-4-pve auf...
  5. L

    Proxmox VE 8.3 released!

    Es ist ein HP ProLiant ML10 v2 mit Intel Xeon E3-1231 v3 CPU. Tatsächlich hat ein BIOS Update auf die aktuelle Version von 2019 geholfen (es war von 2015), nun geht auch SSH wieder mit dem aktuellen Kernel. Leider ist mein PVE-Manager nun degraded. Aber dazu mach ich einen eigenen Thread auf. Danke!
  6. L

    Proxmox VE 8.3 released!

    Ich hab heute das Update gemacht und auf einem Server das Problem, dass ich mich nicht mehr mit ssh einloggen konnte, weil es einen segfault im sshd gab: Nov 24 10:03:19 prox kernel: sshd[22556]: segfault at 602e75122bf0 ip 0000602e75122bf0 sp 00007ffe4b5eaa78 error 7 in...
  7. L

    segfault in sshd after update to proxmox 8.3 with kernel 6.8.12-4-pve

    I did the upgrade to proxmox 8.3 today and couldn't login via SSH on my machine anymore. Web-UI works and in the shell I could see a segfault in sshd: Nov 24 10:03:19 prox kernel: sshd[22556]: segfault at 602e75122bf0 ip 0000602e75122bf0 sp 00007ffe4b5eaa78 error 7 in sshd[602e750f1000+ce000]...
  8. L

    Is it possible to run a NFS server within a LXC?

    Just a note about the changes needed to my NFS container after upgrading to Proxmox 5: After the upgrade of Proxmox, the NFS server inside the container didn't run anymore. I needed to upgrade the container to Debian 9 and start kernel-nfs-server via systemctl, that solved the start problems...
  9. L

    Is it possible to run a NFS server within a LXC?

    It's a bit confusing when you mix the topics "file system mounts between containers and/or node" and "network access to a directory". For filesystem mounts, AFAIK it is *not* possible to mount a directory from one container to another. To do so, the directory has to be part of the node...
  10. L

    Is it possible to run a NFS server within a LXC?

    Or vice versa: the line "lxc.mount.entry: /tank/data srv/data none bind,create=dir,optional 0 0" does mount a directory from the node filesystem (/tank/data) into a directory of the container (/srv/data in the container filesystem). I gues a mount from container to container is not possible...
  11. L

    Is it possible to run a NFS server within a LXC?

    No, on the Proxmox host itself I didn't install anything NFS specific, the nfs-kernel-server is installed and running in the LXC container only: On the Proxmox-Node (stuff was already installed with proxmox): root@proxmox:~# dpkg -l | grep nfs ii libnfsidmap2:amd64 0.25-5...
  12. L

    Is it possible to run a NFS server within a LXC?

    Solved: by adding the option "lxc.aa_profile: unconfined" to the container configuration
  13. L

    Is it possible to run a NFS server within a LXC?

    My attempt to run a NFS server within a LXC Linux Container failed. I used the debian based TurnKey Linux fileserver template and tried to activate the NFS kernel server within its LXC (/etc/exports were already configured): # /etc/init.d/nfs-kernel-server start mount: nfsd is write-protected...