Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

34
linux/virt-xml Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# virt-xml
> Edit libvirt Domain XML files with explicit command-line options.
> Note: 'domain' refers to the name, UUID or ID for the existing VMs (See: tldr virsh).
> More information: <https://github.com/virt-manager/virt-manager/blob/main/man/virt-xml.rst>.
- List all the suboptions for a specific option:
`virt-xml --{{option}}=?`
- List all the suboptions for disk, network, and boot:
`virt-xml --disk=? --network=? --boot=?`
- Edit a value for a specific domain:
`virt-xml {{domain}} --edit --{{option}} {{suboption}}={{new_value}}`
- Change the description for a specific domain:
`virt-xml {{domain}} --edit --metadata description="{{new_description}}"`
- Enable/Disable the boot device menu for a specific domain:
`virt-xml {{domain}} --edit --boot bootmenu={{on|off}}`
- Attach host USB hub to a running VM (See: tldr lsusb):
`virt-xml {{domain}} --update --add-device --hostdev {{bus}}.{{device}}`