kvm-virtualization – 如何在Linux中启用KVM设备直通?

前端之家收集整理的这篇文章主要介绍了kvm-virtualization – 如何在Linux中启用KVM设备直通?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个MSI-GD65游戏主板和一个Intel i7 4790.在B IOScpu功能部分启用了VT-D.

我正在运行Ubuntu 14.04.1 LTS,当我尝试分离设备时,收到以下消息:

# virsh nodedev-detach pci_0000_00_1f_2

error: Failed to detach device pci_0000_00_1f_2
error: Operation not supported: neither VFIO nor KVM device assignment is currently supported on this system

Dmesg包含一些有关IOMMU的信息,但我不知道这是否意味着启用了VT-D

$dmesg | grep -i iommu

[ 0.027450] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
[ 0.027455] dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
[ 0.027521] IOAPIC id 8 under DRHD base 0xfed91000 IOMMU 1

任何人都可以建议我在这个系统上启用VT-D需要做什么,并通过PCI设备通过KVM客人吗?

解决方法

此问题的解决方案是在GRUB引导参数中启用IOMMU.

您可以通过在/ etc / default / grub中设置以下内容来完成此操作

GRUB_CMDLINE_LINUX_DEFAULT=”intel_iommu=on”

如果您使用的是AMD处理器,则应将amd_iommu = on附加到引导参数上

GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash amd_iommu=on”

然后运行update-grub并重新启动

这个链接对我有所帮助:https://www.centos.org/forums/viewtopic.php?f=47&t=48115

另见:https://pve.proxmox.com/wiki/Pci_passthrough

由于我认为iommu是VT-D的AMD替代品,所以有点让我望而却步.

原文链接:https://www.f2er.com/linux/399864.html

猜你在找的Linux相关文章