就是想看在 Linux 系统运行如下脚本的输出情况
#!/bin/bash
shopt -s nullglob
for g in $(find /sys/kernel/iommu_groups/* -maxdepth 0 -type d | sort -V); do
echo "IOMMU Group ${g##*/}:"
for d in $g/devices/*; do
echo -e "\t$(lspci -nns ${d##*/})"
done;
done;
我购买了 asus b650m plus wifi 的板子,这款的板载有线,无线网卡,以及插在从南桥出来的 pcie 插槽上的设备都有单独的分组,可以轻松直通给虚拟机,不知道微星的这款是不是也可以?
1
wniming OP |
2
wniming OP <blockquote class="imgur-embed-pub" lang="en" data-id="a/wjA3Prr" data-context="false" ><a href="//imgur.com/a/wjA3Prr"></a></blockquote><script async src="//s.imgur.com/min/embed.js" charset="utf-8"></script>
<blockquote class="imgur-embed-pub" lang="en" data-id="WqT0p5Q"><a href="https://imgur.com/WqT0p5Q">View post on imgur.com</a></blockquote><script async src="//s.imgur.com/min/embed.js" charset="utf-8"></script> [img][/img] [Imgur]( https://imgur.com/WqT0p5Q) https://imgur.com/WqT0p5Q |