远程启动KVM虚拟机的方法
1.查看所有虚拟机状态
[root@cheng Desktop]# virsh list --all
Id 名称 状态
----------------------------------------------------
1 server1.example.com running
- server2.example.com 关闭
- server3.example.com 关闭
- server4.example.com 关闭
2. 开启虚拟机
[root@cheng Desktop]virsh start server2.example.com
3.关闭虚拟机
[root@cheng Desktop]# virsh shutdown server1.example.com
4.安装新的虚拟机:
virt-install -n test -r 256 -f test.img -s 4 -c winxp.iso --accelerate --vnc --noautoconsole
-n myxp:新的虚拟机的名称
-r 256: 挂载内存大小
-f myxpimg: 虚拟磁盘
-s 4: 磁盘大小(G为单位)
-c winxp.iso 安装的CDROM的ISO文件
--accelerate: 内核加速技术
--vnc: exports the guest's virtual console using VNC.
--noautoconsole: will not automatically connect to the virtual machine's console
阅读(2102) | 评论(0) | 转发(0) |