1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:02:08 +02:00
tldr/pages/linux/virt-viewer.md
K.B.Dharun Krishna 1de9190d63
pages.*: standardize capitalization in note term (#12195)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-05 12:34:49 +05:30

25 lines
798 B
Markdown

# virt-viewer
> Minimal graphical interface for a virtual machine (VM).
> Note: 'domain' refers to the name, UUID or ID for the existing VMs (See: tldr virsh).
> More information: <https://manned.org/virt-viewer>.
- Launch `virt-viewer` with a prompt to select running virtual machines:
`virt-viewer`
- Launch `virt-viewer` for a specific virtual machine by ID, UUID or name:
`virt-viewer "{{domain}}"`
- Wait for a virtual machine to start and automatically reconnect if it shutdown and restarts:
`virt-viewer --reconnect --wait "{{domain}}"`
- Connect to a specific remote virtual machine over TLS:
`virt-viewer --connect "xen//{{url}}" "{{domain}}"`
- Connect to a specific remote virtual machine over SSH:
`virt-viewer --connect "qemu+ssh//{{username}}@{{url}}/system" "{{domain}}"`