ホストによって正しく検出されたUSBデバイスをkvm vmに接続するのに苦労しています。
新しくインストールしたUbuntu Server 14.10をKVM/QEMUホストとして使用しています。次のコマンドを使用してUbuntu vmをセットアップします。
virt-install --connect qemu:///system \
-n test01 \
-r 1024 \
--vcpus=2 \
--disk path=/vmstorage/01/test01.img,size=5 \
--vnc \
--noautoconsole \
--os-variant=ubuntuutopic \
--hvm \
--cdrom /path/to/ubuntu-14.10-server-i386.iso
インストールが正常に完了すると、virsh dumpxml test01
が返されます
<domain type='kvm' id='16'>
<name>test01</name>
<uuid>f58ca825-c999-4168-9f5a-616057d9955d</uuid>
<memory unit='KiB'>1048576</memory>
<currentMemory unit='KiB'>1048576</currentMemory>
<vcpu placement='static'>2</vcpu>
<resource>
<partition>/machine</partition>
</resource>
<os>
<type Arch='x86_64' machine='pc-i440fx-utopic'>hvm</type>
<boot dev='hd'/>
</os>
<features>
<acpi/>
<apic/>
<pae/>
</features>
<cpu mode='custom' match='exact'>
<model fallback='allow'>SandyBridge</model>
</cpu>
<clock offset='utc'>
<timer name='rtc' tickpolicy='catchup'/>
<timer name='pit' tickpolicy='delay'/>
<timer name='hpet' present='no'/>
</clock>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>restart</on_crash>
<devices>
<emulator>/usr/bin/kvm-spice</emulator>
<disk type='file' device='disk'>
<driver name='qemu' type='raw'/>
<source file='/vmstorage/01/test01.img'/>
<backingStore/>
<target dev='vda' bus='virtio'/>
<alias name='virtio-disk0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>
</disk>
<disk type='block' device='cdrom'>
<driver name='qemu' type='raw'/>
<backingStore/>
<target dev='hda' bus='ide'/>
<readonly/>
<alias name='ide0-0-0'/>
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
</disk>
<controller type='usb' index='0' model='ich9-ehci1'>
<alias name='usb0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x7'/>
</controller>
<controller type='usb' index='0' model='ich9-uhci1'>
<alias name='usb0'/>
<master startport='0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0' multifunction='on'/>
</controller>
<controller type='usb' index='0' model='ich9-uhci2'>
<alias name='usb0'/>
<master startport='2'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x1'/>
</controller>
<controller type='usb' index='0' model='ich9-uhci3'>
<alias name='usb0'/>
<master startport='4'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x2'/>
</controller>
<controller type='pci' index='0' model='pci-root'>
<alias name='pci.0'/>
</controller>
<controller type='ide' index='0'>
<alias name='ide0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
</controller>
<interface type='bridge'>
<mac address='52:54:00:11:b2:c1'/>
<source bridge='br0'/>
<target dev='vnet0'/>
<model type='virtio'/>
<alias name='net0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>
<serial type='pty'>
<source path='/dev/pts/0'/>
<target port='0'/>
<alias name='serial0'/>
</serial>
<console type='pty' tty='/dev/pts/0'>
<source path='/dev/pts/0'/>
<target type='serial' port='0'/>
<alias name='serial0'/>
</console>
<input type='mouse' bus='ps2'/>
<input type='keyboard' bus='ps2'/>
<graphics type='vnc' port='5900' autoport='yes' listen='0.0.0.0'>
<listen type='address' address='0.0.0.0'/>
</graphics>
<video>
<model type='cirrus' vram='9216' heads='1'/>
<alias name='video0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
</video>
<memballoon model='virtio'>
<alias name='balloon0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/>
</memballoon>
</devices>
<seclabel type='dynamic' model='apparmor' relabel='yes'>
<label>libvirt-f58ca825-c999-4168-9f5a-616057d9955d</label>
<imagelabel>libvirt-f58ca825-c999-4168-9f5a-616057d9955d</imagelabel>
</seclabel>
</domain>
USBスティックを接続したい。いくつかのグーグルの後、私は foundsomesources 基本的にすべて次のアプローチを示唆しています:
ベンダーIDと製品IDを取得する
root@Host01:~# lsusb
Bus 002 Device 004: ID 13fe:5100 Kingston Technology Company Inc. Flash Drive
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 004: ID 0624:0249 Avocent Corp.
Bus 001 Device 003: ID 0624:0248 Avocent Corp.
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
virsh edit test01
を介してVMに新しい構成スニペットを追加する
<devices>
<!- ... ->
<hostdev mode='subsystem' type='usb' managed='yes'>
<source>
<vendor id='0x13fe'/>
<product id='0x5100'/>
</source>
</hostdev>
</devices/>
vMを再起動します
その後、vmはlsusb
を介してスティックを表示しますが、何も変更されません。デバイスを2番目のVMに接続しようとすると、virsh start <othervm>
はerror: Requested operation is not valid: USB device 002:003 is in use by driver QEMU, domain test01
[〜#〜]で失敗します[〜#〜]ホストにスティックをマウントしてアクセスできます。別のスティックと別のvmオペレーティングシステム(ubuntuとwindows)を試しましたが、成功しませんでした。
一部の手順ではapparmorをオフにすることを推奨していますが、/etc/init.d/apparmor stop
は何も変更しませんでした。
エラーやログメッセージが表示されず、何が問題なのかを知る手掛かりがないので、これは私を混乱させています。 USBをVMに接続する方法、または少なくともそれをさらに分析する方法についてのアイデアはありますか?
おそらくアクセス権に問題があります。 QEMUデーモンはUSBデバイスにアクセスできません。試してください:
chown libvirt-qemu /dev/bus/usb/ -R
またはKVMを実行しているユーザー。これでうまくいくはずです。
ハイパーバイザーを実行しているユーザーにraw USBデバイスノードへの永続的なアクセスを許可するには、udevルールを作成する必要があります。 chownベースの回答は、次の再起動までしか機能しません。
/lib/udev/rules.d
で、51-usb_passthrough.rules
のようなファイルを作成します。
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTRS{busnum}=="2" ATTRS{devpath}=="1" GROUP="kvm"
ここでは、物理バスとポート番号を使用してデバイスをターゲットに設定しました(新しいデバイスを接続するたびに、VMを再構成するよりも、接続されているデバイスに関係なく、物理ポートを通過する方が好きなので)) 、しかしもちろんあなたは好きな属性を使うことができます; GROUP
引数はデバイスノードを所有するグループを決定します、これは仮想マシンを実行するユーザーである必要があります。
udevadm control --reload-rules
を実行して、新しいルールをすぐに有効にするか(USBデバイスを切断/再接続する必要があります)、またはホストを再起動します。
簡単なソリューション:接続
nc -U socket-file
ここで、socket-fileは監視するパスです。見つける方法:ps -FA | grep qemu。コマンドラインにあります。
そして、モニターでコマンドを実行します。
device_add usb-Host,id=<ANY string>,hostbus=<BUS>,hostport=<PORT>
これはポート番号によるパススルーです。任意のVID/PIDの任意のデバイスを通過できます。特定のデバイスを使用してパススルーすることもできます
device_add usb-Host,id=<ANY string>,vendorid=0x0461,productid= 0x0010
ホストのどのポートにも接続できます。
役立つコマンド:
info usbhost
info usb