kvm disk types

페이지 정보

작성자 조희승 댓글 0건 조회 10,524회 작성일 14-02-19 14:14

본문

http://libvirt.org/formatdomain.html
 
 
ubuntu-vm-builder로 생성하면 ide disk임
 
    <disk type='file' device='disk'>
      <driver name='qemu' type='qcow2'/>
          <source file='/root/vm/g1/g1.qcow2'/>
      <target dev='hda' bus='ide'/>
      <address type='drive' controller='0' bus='0' unit='0'/>
    </disk>
 
virtio 사용
https://rtcamp.com/tutorials/kvm/enable-virtio-existing-vms/
    <disk type='file' device='disk'>
      <driver name='qemu' type='qcow2' cache='none' io='native'/>
          <source file='/root/vm/g1/temp.qcow2'/>
      <target dev='vda' bus='virtio'/>
    </disk>
 
 
 

댓글목록

등록된 댓글이 없습니다.