1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 22:15:42 +02:00

virsh-connect: add page (#5894)

This commit is contained in:
Adam Herst 2021-05-09 14:07:56 -04:00 committed by GitHub
parent 976e9606cf
commit 393d3a97d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# virsh-connect
> Connect to a virtual machine hypervisor.
> See also: `virsh`.
> More information: <https://manned.org/virsh>.
- Connect to the default hypervisor:
`virsh connect`
- Connect as root to the local QEMU/KVM hypervisor:
`virsh connect qemu:///system`
- Launch a new instance of the hypervisor and connect to it as the local user:
`virsh connect qemu:///session`
- Connect as root to a remote hypervisor using ssh:
`virsh connect qemu+ssh://{{user_name@host_name}}/system`