kvm-虚拟机挂起、恢复
1、作用
需要对虚拟机进行临时性的 暂停状态 和 恢复状态
2、虚拟机挂起
2.1、命令介绍
查看帮助:virsh suspend --help
命令格式:virsh suspend vmhost_name
2.2、实操示例
root@localhost:~# virsh list Id Name State --------------------------------- 9 CentOS-8-x86_64 running # 挂起 virsh suspend CentOS-8-x86_64 root@localhost:~# virsh list Id Name State -------------------------------- 9 CentOS-8-x86_64 paused
2.3、VNC效果
vnc界面卡死了,但是虚拟机并没有关机
3、虚拟机恢复
3.1、命令介绍
查看帮助:virsh resume --help
命令格式:virsh resume vmhost_name
3.2、实操示例
root@localhost:~# virsh list Id Name State -------------------------------- 9 CentOS-8-x86_64 paused # 恢复 virsh resume CentOS-8-x86_64 root@localhost:~# virsh list Id Name State --------------------------------- 9 CentOS-8-x86_64 running
3.3、VNC效果
vnc界面里面恢复了,而且可以进行操作