Recent content by NickB

  1. N

    [TUTORIAL] PVE9 Create a VM Template for a Debian Trixie Server with Cloud-Init

    ok, so failure I was seeing was with: qm create "$TEMPLATE_VMID" \ --name "template-$TEMPLATE_NAME" \ --ostype "l26" \ --machine "q35,viommu=virtio" \ --bios "ovmf" \ --efidisk0 "${VM_STORAGE}:1,efitype=4m,pre-enrolled-keys=0" \ --tpmstate0 "${VM_STORAGE}:0,version=v2.0"...
  2. N

    [TUTORIAL] PVE9 Create a VM Template for a Debian Trixie Server with Cloud-Init

    Even when not creating a template and cloning, and just creating a VM instead it still fails using: #!/bin/bash # makes a cloud-init template vm from URL # call like ./proxmox_create_debian_template.sh 9000 tank set -e # Check for root priviliges if [[ $EUID -ne 0 ]]; then printf "Please...
  3. N

    [TUTORIAL] PVE9 Create a VM Template for a Debian Trixie Server with Cloud-Init

    That still fails in the same way in the initramfs :( $ sudo qm clone 9000 101 --full 1 --name foobar && sudo qm start 101 && sudo qm terminal 101 create full clone of drive efidisk0 (tank:base-9000-disk-0) create full clone of drive scsi0 (tank:base-9000-disk-1) transferred 0.0 B of 8.0 GiB...
  4. N

    [TUTORIAL] PVE9 Create a VM Template for a Debian Trixie Server with Cloud-Init

    I created a script, to run on proxmox, to similarly create a Debian VM template: #!/bin/bash # makes a cloud-init template vm from URL # call like ./proxmox_create_debian_template.sh 9000 tank # Check for root priviliges if [[ $EUID -ne 0 ]]; then printf "Please run as root:\nsudo %s\n"...
  5. N

    Proxmox VE 8.0 (beta) released!

    It would be really great to see support for VIOMMU in version 8. There is bug report here: https://bugzilla.proxmox.com/show_bug.cgi?id=3784 And v5 patch set that was adding this here: https://lists.proxmox.com/pipermail/pve-devel/2023-January/055483.html Is there any likelihood this will be...
  6. N

    nested virtualization is not working

    I opened a ticket to request GUI/API support for adding a vIOMMU device to a VM. https://bugzilla.proxmox.com/show_bug.cgi?id=3784
  7. N

    nested virtualization is not working

    https://github.com/bashtheshell/IOMMU-nested-pve describes a work around for the Proxmox GUI not exposing setting for nested vIOMMU, but directly prepending `-device intel-iommu,intremap=on` to the qemu args.
  8. N

    Some VM's kvm error after minor upgrade on 7.0

    I'm not sure if it's related, but in the last few days, I"m seeing this during a backup (which had been backing up without issue previously). The VM continues to be usable, just the backup fails. INFO: starting new backup job: vzdump 101 --mode snapshot --remove 0 --storage backups --node nuc...
  9. N

    Undefined subroutine &PVE::Storage::DirPlugin::alloc_image at BTRFSPlugin.pm

    While working through the Cloud-Init at https://pve.proxmox.com/wiki/Cloud-Init_Support to create a Template on my PVE7 system that is using BTRFS storage I get the following error: $ sudo qm set 100 --scsihw virtio-scsi-pci --scsi0 local-btrfs:100/vm-100-disk-0.raw update VM 100: -scsi0...