list
Prints information about existing domains. If no options are specified it prints out information about running domains.
virsh list
[--inactive | --all]
[--managed-save]
[--title] { [--table] | --name | --uuid }
[--persistent]
[--transient]
[--with-managed-save]
[--without-managed-save]
[--autostart]
[--no-autostart]
[--with-snapshot]
[--without-snapshot]
[--state-running]
[--state-paused]
[--state-shutoff]
[--state-other]
创建虚拟机
virt-install --virt-type=kvm \
--name=testLink_164 \
--vcpus=4 --memory=4096 \
--cdrom=/home/iso/CentOS-7-x86_64-DVD-1810.iso \
--disk path=/home/vm/testLink_164.img,size=100 \
--network bridge=br0 \
--vnc --vncport=5920 --vnclisten=0.0.0.0 \
--force
管理虚拟机状态
virsh start|destory|shutdown|suspend|resume machineName
查看虚拟机的vnc端口
virsh vncdisplay machineName
设置/取消虚拟机随物理机自启
virsh autostart [--disable]
编辑虚拟机
virsh edit machineNmae
原文:https://www.cnblogs.com/QQ-1615160629/p/virsh.html