Search results

  1. U

    Setting MTU to 9000 blocks access to node, but node can ping

    I've got a test machine with a 10 gig NIC and two 1 gig NICs. The 10 gig NIC is connected to a 10 gig interface on my switch and one of the gigabit NICs is also connected to the same switch. As part of my testing I have set up these two NICs in an active-backup bond like so: auto lo...
  2. U

    CloudImg VM won't boot, stuck at "starting serial terminal on interface serial0"

    I'm trying to automate the creation of VMs using cloudimg's and I've got a template and a clone created, but the clone VM won't start it just says "starting serial terminal on interface serial0". This is my script: wget...
  3. U

    Properly mounting ZFS pool in LXC container that allows snapshot-based backups

    I want to have Samba running in a privileged LXC container rather than directly on proxmox. I tried normal bind mounting as described on the wiki but that only bound the top most dataset would be a pain to manage if I wanted to add more datasets down the line. I then found this post on how to...
  4. U

    Windows VMs randomly stop

    I'm trying to play around with Active Directory and all that stuff but my windows VMs (and only my windows VMs) randomly stop, there's nothing in dmesg and there's plenty of RAM for the VMs. The VMs aren't blue screening. I tried installing Windows 10 Pro in a VM and after installing the VirtIO...
  5. U

    VM with mediated i915 gpu fails to start, "Failed to find VBIOS tables"

    I've got an Intel NUC6I3SYH that I've installed proxmox on, I've enabled all the virtualization stuff and set up a test Ubuntu 20.04 Server VM. I then shut down the VM and added a mediated Intel GPU but when I start the VM up the kernel stops with the error "[drm] Failed to find VBIOS tables...
  6. U

    Windows VM randomly stops responding

    About 40 minutes ago my windows VM running Blue Iris completely stopped responding, I couldn't RDP in, qemu guest agent stopped responding and I couldn't access blue iris through its web interface. My only course of action was to reset the VM. I believe this started happening when I passed...
  7. U

    Fedora 34 LXC container will not stop if there is a user with the same UID/GID as an NFS share's files

    I've got a fedora 34 container in a proxmox VM (proxmox host, proxmox guest with a fedora lxc). If the container is brand new I can start and stop it no problem. If I add an NFS share to be mounted in /etc/fstab the container can start and stop no problem. All the files in the share are owned by...
  8. U

    Why is /etc/pve not stored directly in my zfs dataset?

    Due to other reasons I wanted to restore /etc/pve/status.cfg from one of my zfs snapshots that sanoid makes. When when I went into /.zfs/snapshot/autosnap_2021-02-26_00:00:01_daily/etc/pve that folder was empty which I found unusual. I checked all my zfs datasets and there weren't any mounted...
  9. U

    [SOLVED] Trying to automate the creation of virtual machines using ansible; "authorization on proxmox cluster failed with exception"

    This is my ansible playbook: --- - hosts: gluster-test become: true tasks: - name: Create new VM with minimal options community.general.proxmox_kvm: proxmox_default_behavior: 'no_defaults' api_user: 'root@pam' api_password: 'blahblahblah' api_host...