Proxmox Logo

Proxmox Templates

Ubuntu 22.04 Template ubuntu-2204-jammy Open a shell on the Proxmox host. First install libguestfs-tools so we have virt-customize, then download the image then uninstall open-vm-tools and install qemu-guest-agent. apt install libguestfs-tools wget https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img virt-customize -a jammy-server-cloudimg-amd64.img --uninstall open-vm-tools virt-customize -a jammy-server-cloudimg-amd64.img --install qemu-guest-agent --truncate /etc/machine-id Create the VM that will become a template. I’m using vmid 2204 since this is Ubuntu 22.04. Import the image from the last step. Using default Proxmox storage local-lvm, change accordingly if you added storage. Change –net0 to your environment. To use a vlan: –net0 virtio,bridge=vmbr1,tag=10 Attach the imported disk to the VM. Add the Cloud-Init drive. Set the boot disk. Create the serial interface as the display. ...

April 3, 2025 · 3 min