kvm虚拟化学习笔记(五)之windows虚拟机性能调整
1.本文相关软件下载地址
2.加载驱动思路
3.替换驱动
|
1
|
# virsh edit wintest01
|
|
1
2
3
4
5
6
7
8
9
10
11
12
|
<disk type=
'file'
device=
'disk'
>
<driver name=
'qemu'
type=
'raw'
cache=
'writeback'
/>
<source file=
'/data/wintest01.img'
/>
<target dev=
'vda'
bus=
'virtio'
/>
<address type=
'pci'
domain=
'0x0000'
bus=
'0x00'
slot=
'0x05'
function
=
'0x0'
/>
</disk>
<
interface
type=
'bridge'
>
<mac address=
'52:54:00:da:f1:a6'
/>
<source bridge=
'br0'
/>
<model type=
'virtio'
/>
<address type=
'pci'
domain=
'0x0000'
bus=
'0x00'
slot=
'0x06'
function
=
'0x0'
/>
</
interface
>
|
5.解决KVM虚拟机鼠标同步问题
|
1
2
|
# virsh edit wintest01
<input type=’tablet’ bus=’usb’/>
|



















