Changes for page proxmox

Last modified by Kevin Wiki on 2026/05/18 15:44

From version 7.1
edited by Kevin Wiki
on 2025/07/05 20:23
Change comment: There is no comment for this version
To version 8.6
edited by Kevin Wiki
on 2026/05/18 07:57
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -103,17 +103,21 @@
103 103  set -e
104 104  
105 105  echo "Downloading LXC templates..."
106 -pveam download local ubuntu-22.04-standard_22.04-1_amd64.tar.gz
107 -pveam download local ubuntu-24.04-standard_24.04-1_amd64.tar.zst
108 -pveam download local debian-12-standard_11.7-1_amd64.tar.zst
106 +pveam download nvme ubuntu-22.04-standard_22.04-1_amd64.tar.zst
107 +pveam download nvme ubuntu-24.04-standard_24.04-2_amd64.tar.zst
108 +pveam download nvme alpine-3.21-default_20241217_amd64.tar.xz
109 +pveam download nvme debian-12-standard_12.7-1_amd64.tar.zst
109 109  
110 110  echo "Downloading Ubuntu cloud image..."
111 111  wget -N http://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-amd64.img
112 112  
113 113  echo "Creating VM Template..."
114 -qm create 910 -name template-ubuntu-jammy -memory 2048 -net0 virtio,bridge=vmbr0 -cores 2 -sockets 1
115 -qm importdisk 910 ubuntu-24.04-server-cloudimg-amd64.img nvme
116 -qm set 910 -scsihw virtio-scsi-pci -virtio0 nvme:vm-910-disk-0
115 +qm create 910 -name template-ubuntu-jammy -memory 2048 -net0 virtio,bridge=vmbr0 -cores 2 -sockets 1 && 1
116 +
117 +# qm importdisk 910 ubuntu-24.04-server-cloudimg-amd64.img nvme
118 +# qm set 910 -scsihw virtio-scsi-pci -scsi0-virtio0 nvme:910/vm-910-disk-0
119 +qm set 910 -scsihw virtio-scsi-pci -scsi0 nvme:0,import-from=/mnt/nvmestorage/template/iso/ubuntu-24.04-server-cloudimg-amd64.img
120 +
117 117  qm set 910 -serial0 socket
118 118  qm set 910 -boot c -bootdisk virtio0
119 119  qm set 910 -agent 1
... ... @@ -121,12 +121,30 @@
121 121  qm set 910 -vcpus 1
122 122  qm set 910 -vga qxl
123 123  qm set 910 -ide2 nvme:cloudinit
124 -qm resize 910 virtio0 +8G
128 +# qm resize 910 scsi0 +8G
129 +
130 +read -p "Confirm converting to template by pressing Enter"
125 125  qm template 910
126 126  
127 127  echo "Templates setup complete."
128 128  {{/code}}
129 129  
136 +
137 += VM runtime setup =
138 +
139 +After creating the VM and before making it into a template there are some programs and settings we want to ensure exists always.
140 +
141 +qemu-guest-agent is for allowing proxmox to query information from the VM such as IP address, shutdown commands, etc
142 +
143 +{{code language="bash"}}
144 +sudo apt update
145 +sudo apt upgrade -y
146 +sudo apt install qemu-guest-agent -y
147 +
148 +sudo systemctl enable qemu-guest-agent.service
149 +sudo systemctl start qemu-guest-agent.service
150 +{{/code}}
151 +
130 130  
131 131  )))
132 132