In certain classes virtual machines may be nested inside the desktop VM. If there is an issue with one of these VMs these steps can be used to reboot:
- Login to the desktop VM using VNC
- Open a terminal window
- Run the "sudo virsh list" command to view all the running VMs
- [lab@desktop ~]$ sudo virsh list
Id Name State
----------------------------------------------------
1 vmx1-vcp running
2 vmx1-vfp running
- [lab@desktop ~]$ sudo virsh list
- Use the "sudo virsh destroy vmx1-vfp" command to stop the desired VM
- [lab@desktop ~]$ sudo virsh destroy vmx1-vfp
Domain vmx1-vfp destroyed
- [lab@desktop ~]$ sudo virsh destroy vmx1-vfp
- Issue the "sudo virsh start vmx1-vfp" command to restart the VM
- [lab@desktop ~]$ sudo virsh start vmx1-vfp
Domain vmx1-vfp started
- [lab@desktop ~]$ sudo virsh start vmx1-vfp
- Run the "sudo virsh list" command to make sure the VM has restarted correctly
- [lab@desktop ~]$ sudo virsh list
Id Name State
----------------------------------------------------
1 vmx1-vcp running
2 vmx1-vfp running
- [lab@desktop ~]$ sudo virsh list
If the issue is still not resolved, the desktop VM can be rebuilt using the following process:
Comments