我安装了一个Ubuntu12.04 64位,安装了QEMU/KVM &virt 0.9.4 (最近从源代码编译)。
我的问题是,所有的来宾窗口机器都不承认usb2.0端口:
我的系统是最新的,最近我将virt管理器从0.9.1升级到0.9.4,并升级到virtinst 0.600.3和virt-viewer 0.5.4。
这一问题在0.9.1中也存在。
发布于 2012-10-18 07:19:42
答案是这里
发出命令virsh edit testmachine打开XML,其中testmachine是您在virt中看到的计算机名,并将以下行添加到<devices>部分:
<controller type='usb' index='0' model='ich9-ehci1'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x7'/>
</controller>
<controller type='usb' index='0' model='ich9-uhci1'>
<master startport='0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0' multifunction='on'/>
</controller>https://askubuntu.com/questions/192804
复制相似问题