mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-04 18:44:04 +00:00
Update cheatsheets
This commit is contained in:
12
tldr/cbonsai
12
tldr/cbonsai
@@ -16,6 +16,18 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
`cbonsai {{[-i|--infinite]}}`
|
||||
|
||||
- Set the growth factor of the tree (default: 32):
|
||||
|
||||
`cbonsai {{[-L|--life]}} {{0..200}}`
|
||||
|
||||
- Set the branching factor of the tree (default: 5):
|
||||
|
||||
`cbonsai {{[-M|--multiplier]}} {{0..20}}`
|
||||
|
||||
- Run in screensaver mode (equivalent to `--live --infinite` but any keypress exits):
|
||||
|
||||
`cbonsai {{[-S|--screensaver]}}`
|
||||
|
||||
- Append a message to the bonsai:
|
||||
|
||||
`cbonsai {{[-m|--message]}} "{{message}}"`
|
||||
|
||||
@@ -30,7 +30,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Get other resources:
|
||||
|
||||
`kubectl get {{persistentvolumeclaims|secret}}`
|
||||
`kubectl get {{persistentvolumeclaims|secret|...}}`
|
||||
|
||||
- Get all resources in all namespaces:
|
||||
|
||||
|
||||
@@ -12,6 +12,10 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
`pvesh {{[g|get]}} /nodes`
|
||||
|
||||
- Display detailed information about containers or virtual machines:
|
||||
|
||||
`pvesh {{[g|get]}} /nodes/{{node_name}}/{{lxc|qemu}}`
|
||||
|
||||
- Discover API paths:
|
||||
|
||||
`pvesh {{[l|ls]}} {{/}}`
|
||||
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# python
|
||||
|
||||
> Python language interpreter.
|
||||
> More information: <https://www.python.org>.
|
||||
> More information: <https://docs.python.org/using/cmdline.html>.
|
||||
|
||||
- Start a REPL (interactive shell):
|
||||
|
||||
|
||||
25
tldr/vboxmanage-modifyvm
Normal file
25
tldr/vboxmanage-modifyvm
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# VBoxManage modifyvm
|
||||
|
||||
> Change settings for a virtual machine that is stopped.
|
||||
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-modifyvm>.
|
||||
|
||||
- Rename the VM:
|
||||
|
||||
`VBoxManage modifyvm {{uuid|vm_name}} --name {{new_name}}`
|
||||
|
||||
- Adjust memory and CPU:
|
||||
|
||||
`VBoxManage modifyvm {{uuid|vm_name}} --memory {{2048}} --cpus {{2}}`
|
||||
|
||||
- Enable Remote Display (VRDE):
|
||||
|
||||
`VBoxManage modifyvm {{uuid|vm_name}} --vrde on`
|
||||
|
||||
- Enable session recording:
|
||||
|
||||
`VBoxManage modifyvm {{uuid|vm_name}} --recording on`
|
||||
Reference in New Issue
Block a user