这是在使用 KVM 的 Ubuntu 12.04LTS 上。该系统有一个显卡,它对管理程序的内核可见,如下所示:
# virsh nodedev-dumpxml pci_0000_21_00_0
<device>
<name>pci_0000_21_00_0</name>
<parent>pci_0000_20_02_0</parent>
<driver>
<name>nvidia</name>
</driver>
<capability type='pci'>
<domain>0</domain>
<bus>33</bus>
<slot>0</slot>
<function>0</function>
<product id='0x0a65'>GT218 [GeForce 210]</product>
<vendor id='0x10de'>NVIDIA Corporation</vendor>
<capability type='virt_functions'>
</capability>
</capability>
</device>
还有一个 PCI Function #1,它是我省略了 dumpxml 的卡的音频部分。
在我的域 XML 中,我有以下内容:
<hostdev mode='subsystem' type='pci' managed='yes'>
<source>
<address domain='0x0000' bus='0x21' slot='0x00' function='0x0'/>
</source>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0' multifunction='on'/>
</hostdev>
<hostdev mode='subsystem' type='pci' managed='yes'>
<source>
<address domain='0x0000' bus='0x21' slot='0x00' function='0x1'/>
</source>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x1'/>
</hostdev>
如果没有这些hostdev标签,我的客户虚拟机就可以正常启动(它也是一个 Ubuntu 12.04LTS 内核)。当我尝试用它们启动虚拟机时,我得到:
# virsh nodedev-detach pci_0000_21_00_0
Device pci_0000_21_00_0 detached
# virsh nodedev-detach pci_0000_21_00_1
Device pci_0000_21_00_1 detached
# virsh start testv
error: Failed to start domain testv
error: Unable to read from monitor: Connection reset by peer
谁能说出了什么问题?
更新:对 KVM 有点陌生,我没有意识到有可用的日志文件。它是这样说的:
Failed to assign device "hostdev0" : Device or resource busy
*** The driver 'pci-stub' is occupying your device 0000:21:00.0.
***
*** You can try the following commands to free it:
***
*** $ echo "10de 0a65" > /sys/bus/pci/drivers/pci-stub/new_id
*** $ echo "0000:21:00.0" > /sys/bus/pci/drivers/pci-stub/unbind
*** $ echo "0000:21:00.0" > /sys/bus/pci/drivers/pci-stub/bind
*** $ echo "10de 0a65" > /sys/bus/pci/drivers/pci-stub/remove_id
***
kvm: -device pci-assign,host=21:00.0,id=hostdev0,configfd=30,bus=pci.0,multifunction=on,addr=0x4: Device 'pci-assign' could not be initialized
2014-12-17 19:15:52.368+0000: shutting down
那么显然nodedev-detatch命令使存根驱动程序处于活动状态?建议的命令是在管理程序还是虚拟机中运行?
如果我没记错的话,您正在尝试将主机当前的 VGA 传递给 VM。坦率地说这有点棘手,有很多要求,从硬件开始。首先,你需要
然后 KVM 将能够使用您主机的显卡通过 QEMU 暴露给 VM。这是一个很好的指南。
您似乎已经在主机上安装了 NVIDIA 专有的图形驱动程序。如果您打算在客户机上使用此卡,并且您没有使用任何其他 NVIDIA 卡,请尝试卸载此驱动程序。