1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| # Clone the VM
qm clone 9000 4140 --name nzbget.ka.beiheimdaheim.de --full=true --storage vmstorage
# Set the nameserver
qm set 4140 --nameserver=10.76.41.1
# Set the ipconfiguration
qm set 4140 --ipconfig0 ip=10.76.41.40/24,gw=10.76.41.1
# Configure the virtual network adapter.
qm set 4140 --net0 virtio,bridge=vmbr0,tag=41
# Enable autoboot
qm set 4140 --onboot 1
# Set the RAM of the VM
qm set 4140 --memory 2048
# Set the vCPU count for the VM
qm set 4140 --cores 2
# Start the VM
qm start 4140
|