码迷,mamicode.com
首页 > 系统相关 > 详细

linux 下的KVM 虚拟机

时间:2018-07-28 20:27:44      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:clock   graphic   exec   centos6.6   false   ras   一个   style   qemu   

linux 下的kvm的使用

  1.  cpu开启VT

  2.  安装kvm套件

  3.  添加br0桥接网口

  4.  创建虚拟机磁盘,或者在安装虚拟机的时候创建该磁盘。

  5.  安装虚拟机

  6.  使用虚拟机

  7.  使用安装的虚拟机磁盘做原始镜像来启动新的虚拟机

    1. 关闭安装的虚拟机

    2. 复制安装的虚拟机磁盘

    3. 重新define 一个虚拟机的xml文件,具体内容如下:


    4. <domain type='kvm'>
          <name>vm01</name>
          <memory>4096000</memory>
          <currentMemory>4096000</currentMemory>
          <vcpu>2</vcpu>
      
         <os>
            <type arch='x86_64' machine='pc'>hvm</type>
            <boot dev='hd'/> 
         </os>
      
         <features>
           <acpi/>
           <apic/>
           <pae/>
         </features>
      
         <clock offset='localtime'/>
         <on_poweroff>destroy</on_poweroff>
         <on_reboot>restart</on_reboot>
         <on_crash>destroy</on_crash>
         <devices>
           <emulator>/usr/libexec/qemu-kvm</emulator>
      
           <disk type='file' device='disk'>
            <driver name='qemu' type='qcow2'/>
             <source file='/storage/instance/vm01/centos6.6.qcow2'/>
             <target dev='hda' bus='ide'/>
           </disk>
      
           <disk type='file' device='disk'>
            <driver name='qemu' type='qcow2'/>
             <source file='/storage/instance/vm01/disk.qcow2'/>
             <target dev='hdb' bus='ide'/>
           </disk>
      
           <disk type='file' device='cdrom'>
             <source file='/iso/CentOS-6.6-x86_64-bin-DVD1.iso'/>
             <target dev='hdc' bus='ide'/>
             </disk>
      
           <interface type='bridge'>
            <source bridge='br0'/>
           </interface>
      
          <input type='mouse' bus='ps2'/>
           <graphics type='vnc' port='-1' autoport='yes' listen = '0.0.0.0' keymap='en-us'/>
         </devices>
       </domain>
    5. 启动刚创建的虚拟机

    6. 大功告成

linux 下的KVM 虚拟机

标签:clock   graphic   exec   centos6.6   false   ras   一个   style   qemu   

原文地址:http://blog.51cto.com/ting2junshui/2151538

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!