首页 > 其他 > 详细

virsh使用

时间:2019-06-01 00:39:41      阅读:96      评论:0      收藏:0      [点我收藏+]

virsh

管理kvm虚拟机

  1. 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]
  2. 创建虚拟机

    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
  3. 管理虚拟机状态

    virsh start|destory|shutdown|suspend|resume machineName
    
  4. 查看虚拟机的vnc端口

    virsh vncdisplay machineName
    
  5. 设置/取消虚拟机随物理机自启

    virsh autostart [--disable]
    
  6. 编辑虚拟机

    virsh edit machineNmae
    

virsh使用

原文:https://www.cnblogs.com/QQ-1615160629/p/virsh.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!