Changes for page proxmox

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

From version 8.1
edited by Kevin Wiki
on 2025/07/05 22:56
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
... ... @@ -133,6 +133,22 @@
133 133  echo "Templates setup complete."
134 134  {{/code}}
135 135  
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 +
136 136  
137 137  )))
138 138