我的编程空间,编程开发者的网络收藏夹
学习永远不晚

kvm 透传显卡至win10虚拟机的方法

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

kvm 透传显卡至win10虚拟机的方法

环境

 已安装nvidia   显卡  驱动
  操作系统:CentOS Linux release 7.9.2009 (Core)
  内核版本:Linux 5.4.135-1.el7.elrepo.x86_64
  显卡   型号:rtx 6000
  
  kvm版本:
  virsh version
  Compiled against library:   libvirt   4.5.0
  Using library:   libvirt   4.5.0
  Using   API  : QEMU 4.5.0
  Running hypervisor: QEMU 1.5.3

解绑GPU 设备

1.配置GRUB_CMDLINE_LINUX(实测,有效),查询要解绑的设备,记录设备id号

lspci  -nn|grep   NVIDIA |grep VGA
或者 lspci  -nn|grep   NVIDIA

2.修改 /etc/default/grub文件的GRUB_CMDLINE_LINUX

vi /etc/default/grub 
以下是内容,新增加 GRUB_CMDLINE_LINUX行: intel_iommu=on pci-stub.ids=10de:1e30" 
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="intel_iommu=on crashkernel=auto spectre_v2=retpoline rhgb quiet rdblacklist=nouveau pci-stub.ids=10de:1e30"
GRUB_DISABLE_RECOVERY="true"

3.更新grub2 conf,执行如下命令

grub2-mkconfig -o /boot/grub2/grub.cfg

4.重启系统

reboot

验证并查看nvidia 显卡

1.执行nvidia-smi ,看不到显卡,证明显卡已经被解绑

# nvidia-smi 
NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.

2.验证内核支持iommu

cat /proc/cmdline | grep iommu 
结果输出: intel_iommu=on

3.验证VT-D是否启用

dmesg |grep -e DMAR -e IOMMU

安装win10虚拟机

qemu-img create -f qcow2  /home/kvm-machines/shaoyan.qcow2  200G
virt-install --name shaoyan --ram 4096 --vcpus=8 --os-type=windows --accelerate --cdrom=/home/kvm_images/win10.iso   --disk path=/home/kvm-machines/shaoyan.qcow2,format=qcow2,bus=ide --bridge=br0  --autostart --vnc --vncport=5910 --vnclisten=0.0.0.0 

宿主机安装软件包

yum -y groups install 'GNOME Desktop'  virt-manager virt-viewer dejavu-lgc-sans-fonts 

显卡加载vfio驱动
1.显卡加载vfio驱动

modprobe vfio
modprobe vfio-pci

2.从服务器卸载1张显卡的4个设备

virsh nodedev-detach pci_0000_b1_00_0
virsh nodedev-detach pci_0000_b1_00_1
virsh nodedev-detach pci_0000_b1_00_2
virsh nodedev-detach pci_0000_b1_00_3

3.验证显卡设备是否加载vfio-pci驱动,加载成功

# lspci -vv -s b1:00.0 | grep driver
        Kernel driver in use: vfio-pci
[root@rtx_6000 10.147.100.107 ~ ]
# lspci -vv -s b1:00.1 | grep driver
        Kernel driver in use: vfio-pci
[root@rtx_6000 10.147.100.107 ~ ]
# lspci -vv -s b1:00.2 | grep driver
        Kernel driver in use: vfio-pci
[root@rtx_6000 10.147.100.107 ~ ]
# lspci -vv -s b1:00.3 | grep driver
        Kernel driver in use: vfio-pci

win10虚拟机添加NVDIA显卡
1.通过远控卡登录服务器透传显卡,执行startx 调出可视化页面

startx

2.添加显卡硬件

3.查看显卡

显卡驱动安装
1.要安装显卡驱动,需要修改虚拟机win10的配置文件 否则显卡驱动安装过程中自检会报错ERROR CODE 43,驱动不允许安装在虚拟机上。

#编辑VM XML
virsh edit shaoyan

#修改第一行
<domain type='kvm'>
#为
<domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'>

#找到<features>节点,添加内容
<features>
... 
  <kvm><hidden state='on'/></kvm>
...
</features>

#找到</device>节点,在device后添加内容
<qemu:commandline><qemu:arg value='-cpu'/><qemu:arg value='host,hv_time,kvm=off,hv_vendor_id=null'/>
</qemu:commandline>

#重启VM
virsh destroy shaoyan
virsh start shaoyan

2.附录完整xml 文件如下,如果是拷贝至其他宿主机配置文件的话,只需要保留xml 文件中的第一组hostdev即可,否则会报错

# cat /etc/libvirt/qemu/shaoyan.xml

<!--
WARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BE
OVERWRITTEN AND LOST. Changes to this xml configuration should be made using:
  virsh edit shaoyan
or other application using the libvirt API.
-->

<domain type='kvm'>
  <name>shaoyan</name>
  <uuid>e06c6c3b-0a57-43e8-9d6f-02fd1e2aad83</uuid>
  <title>gpu</title>
  <description>gpu</description>
  <memory unit='KiB'>16777216</memory>
  <currentMemory unit='KiB'>16777216</currentMemory>
  <vcpu placement='static'>16</vcpu>
  <os>
    <type arch='x86_64' machine='pc-i440fx-rhel7.0.0'>hvm</type>
    <boot dev='hd'/>
  </os>
  <features>
    <acpi/>
    <apic/>
    <hyperv>
      <relaxed state='on'/>
      <vapic state='on'/>
      <spinlocks state='on' retries='8191'/>
    </hyperv>
  </features>
  <cpu mode='host-passthrough' check='none'/>
  <clock offset='localtime'>
    <timer name='rtc' tickpolicy='catchup'/>
    <timer name='pit' tickpolicy='delay'/>
    <timer name='hpet' present='no'/>
    <timer name='hypervclock' present='yes'/>
  </clock>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>destroy</on_crash>
  <pm>
    <suspend-to-mem enabled='no'/>
    <suspend-to-disk enabled='no'/>
  </pm>
  <devices>
    <emulator>/usr/bin/qemu-kvm</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='qcow2'/>
      <source file='/data/kvm/shaoyan.qcow2'/>
      <target dev='hda' bus='ide'/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <controller type='usb' index='0' model='ich9-ehci1'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x7'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci1'>
      <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'>
      <master startport='2'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x1'/>
    </controller>
    <controller type='usb' index='0' model='ich9-uhci3'>
      <master startport='4'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x2'/>
    </controller>
    <controller type='pci' index='0' model='pci-root'/>
    <controller type='ide' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
    </controller>
    <interface type='bridge'>
      <mac address='52:54:00:48:b2:5a'/>
      <source bridge='br0'/>
      <model type='e1000'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
    </interface>
    <serial type='pty'>
      <target type='isa-serial' port='0'>
        <model name='isa-serial'/>
      </target>
    </serial>
    <console type='pty'>
      <target type='serial' port='0'/>
    </console>
    <input type='tablet' bus='usb'>
      <address type='usb' bus='0' port='1'/>
    </input>
    <input type='mouse' bus='ps2'/>
    <input type='keyboard' bus='ps2'/>
    <graphics type='vnc' port='5910' autoport='no' listen='0.0.0.0'>
      <listen type='address' address='0.0.0.0'/>
    </graphics>
    <video>
      <model type='vga' vram='16384' heads='1' primary='yes'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
    </video>
    <hostdev mode='subsystem' type='pci' managed='yes'>
      <source>
        <address domain='0x0000' bus='0xb1' slot='0x00' function='0x0'/>
      </source>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/>
    </hostdev>
    <hostdev mode='subsystem' type='pci' managed='yes'>
      <source>
        <address domain='0x0000' bus='0xb1' slot='0x00' function='0x1'/>
      </source>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/>
    </hostdev>
    <hostdev mode='subsystem' type='pci' managed='yes'>
      <source>
        <address domain='0x0000' bus='0xb1' slot='0x00' function='0x2'/>
      </source>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x08' function='0x0'/>
    </hostdev>
    <hostdev mode='subsystem' type='pci' managed='yes'>
      <source>
        <address domain='0x0000' bus='0xb1' slot='0x00' function='0x3'/>
      </source>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x09' function='0x0'/>
    </hostdev>
    <memballoon model='virtio'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>
    </memballoon>
  </devices>
</domain>

3.登录win10 虚拟机配置网络

4.安装驱动,选择具体型号进行下载并安装驱动

https://www.nvidia.cn/Download/index.aspx?lang=cn

5.查看显卡设备

至此,win10通过kvm虚拟化透传GPU 显卡完成!

到此这篇关于kvm 透传显卡至win10虚拟机的文章就介绍到这了,更多相关kvm 透传显卡win10虚拟机内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

kvm 透传显卡至win10虚拟机的方法

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Win10开启自带虚拟机的方法

这篇文章主要讲解了“Win10开启自带虚拟机的方法”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Win10开启自带虚拟机的方法”吧!1.在小娜搜索栏搜索【控制面板】,搜到后双击打开控制面板2
2023-07-01

虚拟机套娃折腾之路:在ESXI的WIN10上跑Android模拟器并直通显卡

背景 笔者最近找到了手游的脚本,既然有自己的服务器,干嘛不试试在ESXI 6.7下跑?便开始了折腾之旅。 最开始是想在现有的Linux虚拟机上跑Android模拟器的。尝试了Genymotion,发现无法正常启动系统;用xdroid发现能跑
2023-08-16

win10系统计算机查看显卡配置的方法

许多玩大型游戏或使用3D图像处理软件的朋友更关心显卡。有些朋友想知道电脑的显卡型号,知道他们的显卡是否符合配置要求。今天,系统之家小编将分享一种方法,让大家能够查看win10系统电脑的显卡配置。这很简单。win10系统计算机查看显卡配置的方
2023-07-14

在Win7 Hyper-v虚拟机中接真实机声卡的方法

1.真机为Win7 企业版,虚拟机也是Win7的企业版。(虚拟机中XP 只能支持播放不能编程客栈录音,微软文档说Win2008 R2能支持录音,但实际操作发现也是只支持播放,疑惑中)2.真机android中MSTSC的设置如下:python
2023-06-01

虚拟主机文件上传的方法是什么

虚拟主机文件上传的方法通常有以下几种:1. 使用文件管理器:大多数虚拟主机提供了一个文件管理器,你可以通过登录虚拟主机的控制面板或使用FTP客户端访问文件管理器,然后选择要上传的文件并将其拖放到特定目录中。2. 使用FTP客户端:FTP客户
2023-08-31

Win10开机桌面图标显示卡顿的解决方法

这篇文章给大家分享的是有关Win10开机桌面图标显示卡顿的解决方法的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。在windows 10系统中,一般启动电脑进入到系统桌面时,桌面上的图标也就会显示出来,图标显示速度
2023-06-10

文件上传到云虚拟主机的方法是什么

要将文件上传到云虚拟主机,可以使用以下方法之一:1. FTP(文件传输协议):使用FTP客户端软件(如FileZilla、CuteFTP等),通过FTP协议将文件从本地计算机上传到云虚拟主机。需要提前设置FTP服务器的连接参数。2. SSH
2023-09-18

网站文件上传到虚拟主机的方法是什么

上传网站文件到虚拟主机通常有以下几种方法:1. FTP(文件传输协议):使用FTP客户端软件(如FileZilla)连接到虚拟主机,然后将网站文件从本地计算机上传到虚拟主机的指定文件夹。2. 控制面板文件管理器:许多虚拟主机提供了Web控制
2023-08-29

Win10 10049无法启动Hyper-V虚拟机的原因及解决方法

安装上Win10预览版10049后,很快就发现Win10自带的虚拟机Hyper-V无法启动。经过收集用户反映的情况,发现这问题并不简单,不过也找到了相应的解决方法。首先,如果你之前在Win10 10041预览版中未开启Hyper-V虚拟机,
2023-06-14

Win7系统下怎么使用虚拟机运行win10系统? Win7系统下使用虚拟机运行win10系统的方法

win7系统中使用虚拟机运行Win10系统的方法: 1、首先,下载vmware; 2、打开安装包,点击“典型”点击下一步; 3、选择“稍后安装操作系统”点击下一步;4、选择“Mic
2023-05-19

win10预览版10049虚拟机无法正常运行的原因以及解决方法

win10预览版10049已经开始推送给用户,但微软却警告开发者不要安装win10预览版10049,而具体原因则涉及到Hyper-V虚拟机在win10预览版10049中无法正常运行的问题,下面,我们来看看微软对win10预览版10049虚拟
2023-06-13

Win10虚拟机尝试连接到服务器时出错怎么办?尝试连接到服务器xxx时出错的解决方法

不少用户在使用Windwww.cppcns.comows10系统的虚拟机服务Hyper-v功能时,运行Hyper虚拟提示“虚拟机尝试连接到服务器‘XXX’时出错,请检查虚拟管理服务是否正在运行以及是不授权
2023-05-21

编程热搜

目录