Recent content by MrJester888

  1. M

    Device "PCI Simple Communications

    @gsmitheidw Thank you. The vioserial driver was the key for me.
  2. M

    Feature: Load ssh public keys for loading in CT

    Everytime you create a CT from the GUI, you have to go load a file. It would be a nice Qualify of Life enhancement to have Prox store public keys and provide a drop down on the configuration page to simply select one. A common feature of the big VPS providers.
  3. M

    Set IPv6AcceptRA in CT Network Config

    This is actually a sysctl value underneath the systemd configuration, in case that makes it easier. net.ipv6.conf.<interface>.accept_ra
  4. M

    Set IPv6AcceptRA in CT Network Config

    I have a container sitting on a network with DHCPv4 and v6. Setting a static v4 address disables DHCPv4. Setting a static v6 address, does not. Per the systemd documentation, I need to set "IPv6AcceptRA=false" in the [network] section of the interface config do disable DHCPv6 addressing...
  5. M

    Remove All Content Options For "local" storage.

    Thanks for pointing this out. I will have to find a solution. :/ Thanks. I was just missing an obvious fix.
  6. M

    Remove All Content Options For "local" storage.

    I have prox installed to a small SDCard, so I can't/don't want to use it for anything but the OS itself. However, I can't remove 'local' and I can't remove all of the content options. I have tried variations of removing it from the GUI and storage.cfg file, none result in the desired...
  7. M

    Container CPU/Mem Usage Stats Not Reporting On Summary Page

    New Proxmox install. Latest, fully patched. I have 5 containers, 3 are showing stats correctly. Two are showing zero for CPU and memory usage on the Summary tabs. This keeps happening and the only fix I can find so far, is to reboot the host. Restarting pvestatd doesn't help. Is there a...
  8. M

    F27 Unprivileged Container SystemD Issues

    Running the container in debug mode, I get this output. root@vs1:~# lxc-start -n 100 -F -l DEBUG -o /tmp/lxc-100.log systemd 234 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD...
  9. M

    secure webinterface - change port 8006 proxmox 4.4

    My solution here was to use iptables REDIRECT. iptables -t nat -I PREROUTING -i eno1 --dst <ipv4-address> -p tcp --dport 443 -j REDIRECT --to-ports 8006 ip6tables -t nat -I PREROUTING -i eno1 --dst <ipv6-address> -p tcp --dport 443 -j REDIRECT --to-ports 8006 After you add the rules, you can...
  10. M

    F27 Unprivileged Container SystemD Issues

    New prox install. I created a F27 unprivileged container and systemd (really everything) is not working. The CT does not get networking. Simple commands like "systemctl status" fail with "Failed to connect to bus: No such file or directory". F27 in privileged container works fine. Example...
  11. M

    LXC template for Fedora 28

    I would like to know this as well. F27 in unprivileged mode appears to be broken.