Update cheatsheets

This commit is contained in:
ivuorinen
2025-07-26 00:21:07 +00:00
parent 46995545d6
commit 5dd0e05729
145 changed files with 351 additions and 275 deletions

View File

@@ -15,11 +15,11 @@ source: https://github.com/tldr-pages/tldr.git
- Using an ISO file uploaded on the local storage, create a virtual machine with a 4 GB IDE disk on the `local-lvm` storage and an ID of 100:
`qm create {{100}} -ide0 {{local-lvm:4}} -net0 {{e1000}} -cdrom {{local:iso/proxmox-mailgateway_2.1.iso}}`
`qm {{[cr|create]}} {{100}} -ide0 {{local-lvm:4}} -net0 {{e1000}} -cdrom {{local:iso/proxmox-mailgateway_2.1.iso}}`
- Show the configuration of a virtual machine, specifying its ID:
`qm config {{100}}`
`qm {{[co|config]}} {{100}}`
- Start a specific virtual machine:
@@ -27,8 +27,8 @@ source: https://github.com/tldr-pages/tldr.git
- Send a shutdown request, then wait until the virtual machine is stopped:
`qm shutdown {{100}} && qm wait {{100}}`
`qm {{[shu|shutdown]}} {{100}} && qm {{[w|wait]}} {{100}}`
- Destroy a virtual machine and remove all related resources:
`qm destroy {{100}} --purge`
`qm {{[des|destroy]}} {{100}} --purge`