KVM虚拟机上关于宿主机的USB设备使用问题探究
程序员文章站
2022-04-23 19:23:07
这篇文章主要介绍了KVM虚拟机上关于宿主机的USB设备使用问题探究,作者在Windows7的宿主机和CentOS及Fedora的虚拟机上做出了尝试,需要的朋友可以参考下... 15-06-30...
kvm usb passthrough就是将宿主机的usb接口直接给虚拟机使用,usb接口上的设备也就直接可以在虚拟机上使用。
测试环境
宿主机1 centos 6.6 64位 内核版本 2.6.32-431.1.2.0.1.el6.x86_64
宿主机2 fedora 21 内核版本 3.17.2-300.fc21.x86_64
虚拟机 windows 7 64位
配置方法
第一步 通过lsub或者virt-manager看看有那些usb口可供使用
复制代码
代码如下: lsusb
bus 001 device 001: id 1d6b:0002 linux foundation 2.0 root hub
bus 002 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 003 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 004 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 005 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 006 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 006 device 002: id 03f0:1027 hewlett-packard virtual keyboard and mouse
bus 001 device 002: id 058f:6387 alcor micro corp. flash drive
tue dec 16 12:45:21 cst 2014
bus 001 device 001: id 1d6b:0002 linux foundation 2.0 root hub
bus 002 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 003 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 004 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 005 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 006 device 001: id 1d6b:0001 linux foundation 1.1 root hub
bus 006 device 002: id 03f0:1027 hewlett-packard virtual keyboard and mouse
bus 001 device 002: id 058f:6387 alcor micro corp. flash drive
tue dec 16 12:45:21 cst 2014
第二步 将需要的usb接口传给虚拟机
xml 配置文件为
复制代码
代码如下: <hostdev mode='subsystem' type='usb' managed='yes'>
<source>
<vendor id='0x058f'/>
<product id='0x6387'/>
<address bus='1' device='2'/>
</source>
<alias name='hostdev0'/>
</hostdev>
<source>
<vendor id='0x058f'/>
<product id='0x6387'/>
<address bus='1' device='2'/>
</source>
<alias name='hostdev0'/>
</hostdev>
第三步 测试
在测试过程中发现一个很奇怪的现象,在centos6的宿主机上的windows7,u盘不能识别
但是如果是centos6的虚拟机,u盘就可以正常使用,开始以为是windows7驱动的问题,但是尝试了各种驱动,问题依旧。
后来尝试了在fedora21上的windows7虚拟机,u盘插上去就可以直接使用
甚至不要做任何配置,应该和fedora上的usb转发器有关系,看来还是新的版本做了许多改进。