mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-16 10:00:18 +00:00
Update cheatsheets
This commit is contained in:
33
tldr/linux/qm-set
Normal file
33
tldr/linux/qm-set
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# qm set
|
||||
|
||||
> Set virtual machine options.
|
||||
> More information: <https://pve.proxmox.com/pve-docs/qm.1.html>.
|
||||
|
||||
- Set a name for a VM in the GUI:
|
||||
|
||||
`qm set {{100}} --name {{vm_name}}`
|
||||
|
||||
- Set a VM to autostart on boot:
|
||||
|
||||
`qm set {{100}} --autostart {{0|1}}`
|
||||
|
||||
- Set the allotted core count of a VM:
|
||||
|
||||
`qm set {{100}} --cores {{4}}`
|
||||
|
||||
- Set the allotted amount of memory:
|
||||
|
||||
`qm set {{100}} --memory {{8192}}`
|
||||
|
||||
- Give a VM a network device and bridge it to the host network:
|
||||
|
||||
`qm set {{100}} --net{{0}} {{virtio|e1000|rtl8139|vmxnet3}},bridge=vmbr{{0}}`
|
||||
|
||||
- Delete a device:
|
||||
|
||||
`qm set {{100}} --delete {{device_name0}}`
|
||||
Reference in New Issue
Block a user