原创作品,允许转载,转载时请务必以超链接形式标明文章
原始出处 、作者信息和本声明。否则将追究法律责任。
http://koumm.blog.51cto.com/703525/1290682
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’/>
|