1、查看正在运行的虚拟机
virsh list
2、查看所有虚拟机
virsh list --all
3、开启虚拟机
virsh start test
4、关闭虚拟机
virsh shutdown test
5、重启虚拟机
virsh reboot test
6、强制关机
virsh destroy test
7、挂起虚拟机
virsh suspend test
8、恢复虚拟机
virsh resume test
9、删除虚拟机
virsh undefine test (只删除配置)
10、加载配置文件
virsh define /xml/test1.xml #xml路径(在关机状态执行)
11、修改配置文件xml
virsh edit test
12、创建qcow2磁盘
qemu-img create -f qcow2 win7_templete.qcow2 200G
13、关机状态下编辑虚拟机文件
安装包 libguestfs-tools
virt-edit -d test /etc/sysconfig/network-scripts/ifcfg-eth0
14、虚拟机复制文件到本地磁盘
virt-copy-out -d test /etc/hosts .
15、从本地磁盘把文件复制到虚拟机
virt-copy-in -d test /etc/hosts /tmp
16、qcow2磁盘扩容
qemu-img resize test01.qcow2 +2G
磁盘格式转换
raw->qcow2
qemu-img convert -f raw test.img -O qcow2 test.qcow2
qcow2->raw
qemu-img convert -O raw test.qcow2 test.raw