1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 15:53:34 +02:00

qm-create: add page (#8705)

This commit is contained in:
FL 2022-10-04 16:58:55 +02:00 committed by GitHub
parent f1652299fe
commit b60ba44da0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
pages/linux/qm-create.md Normal file
View file

@ -0,0 +1,24 @@
# qm create
> Create or restore a virtual machine on QEMU/KVM Virtual Machine Manager.
> More information: <https://pve.proxmox.com/pve-docs/qm.1.html>.
- Create a virtual machine:
`qm create {{100}}`
- Automatically start the machine after creation:
`qm create {{100}} --start 1`
- Specify the type of operating system on the machine:
`qm create {{100}} --ostype {{win10}}`
- Replace an existing machine (requires archiving it):
`qm create {{100}} --archive {{path/to/backup_file.tar}} --force 1`
- Specify a script that is executed on specific triggers during machine lifetime:
`qm create {{100}} --hookscript {{path/to/script.pl}}`