Created
November 18, 2014 22:31
-
-
Save berlotto/e9beb4f78d687d770eb0 to your computer and use it in GitHub Desktop.
virt-manager (libvirt / virsh) commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Listar as virtual machines | |
virsh list --all | |
#Iniciar máquina virtual | |
virsh start Guest | |
#Abrir o visualizador gráfico da máquina virtual | |
virt-viewer Guest | |
#DEsligar a máquina forçado | |
virsh destroy Guest | |
#Desligar a máquina normalmente ou reboota | |
virsh reboot Guest | |
virsh shutdown Guest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment