当前位置:网站首页 > R语言数据分析 > 正文

vgadriver是什么驱动(vga driver)



本来是想给戴尔OptiPlex 7090安装esxi7,但因为网卡是intel Ethernet Connection (14) I219-LM,版本号是14,ESXI官方驱动最高到 (7) 版本,用过EEUpdate修改版本号无效,所以只能自己封装最新的驱动。顺便把nvme硬盘和USB驱动一起加上,过程踩了不少坑,分享出来给大家避坑

1、网卡驱动:Community Networking Driver for ESXi

截止发文最新版为Net-Community-Driver_1.2.7.0-1vmw.700.1.0._.zip
此驱动支持的网卡列表
igc-community
Vendor Chipset VendorID ProductID
Intel Ethernet Controller I225-LM 0x8086 0x15f2
Intel Ethernet Controller I225-V 0x8086 0x15f3
Intel Ethernet Controller I225-IT(2) 0x8086 0xd9f
Intel Ethernet Controller I225-I 0x8086 0x15f8
Intel Ethernet Controller I225-K 0x8086 0x3100
Intel Ethernet Controller I225-K(2) 0x8086 0x3101
Intel Ethernet Controller I225-LMvP(2) 0x8086 0x5502
Intel Ethernet Controller I226-K 0x8086 0x5504
Intel Ethernet Controller I226-LM 0x8086 0x125b
Intel Ethernet Controller I226-V 0x8086 0x125c
Intel Ethernet Controller I226-IT 0x8086 0x125d
Intel Ethernet Controller I220-V 0x8086 0x15f7
Intel Ethernet Controller I221-V 0x8086 0x125e
e1000-community
Vendor Chipset VendorID ProductID
Intel Ethernet Connection (6) I219-LM 0x8086 0x15bd
Intel Ethernet Connection (6) I219-V 0x8086 0x15be
Intel Ethernet Connection (7) I219-LM 0x8086 0x15bb
Intel Ethernet Connection (7) I219-V 0x8086 0x15bc
Intel Ethernet Connection (10) I219-LM 0x8086 0x0d4e
Intel Ethernet Connection (10) I219-V 0x8086 0x0d4f
Intel Ethernet Connection (11) I219-LM 0x8086 0x0d4c
Intel Ethernet Connection (11) I219-V 0x8086 0x0d4d
Intel Ethernet Connection (12) I219-LM 0x8086 0x0d53
Intel Ethernet Connection (12) I219-V 0x8086 0x0d55
Intel Ethernet Connection (13) I219-LM 0x8086 0x155b
Intel Ethernet Connection (13) I219-V 0x8086 0x155c
Intel Ethernet Connection (14) I219-LM 0x8086 0x15f9
Intel Ethernet Connection (14) I219-V 0x8086 0x15fa
Intel Ethernet Connection (15) I219-LM 0x8086 0x15f4
Intel Ethernet Connection (15) I219-V 0x8086 0x15f5
Intel Ethernet Connection (16) I219-LM 0x8086 0x1a1e
Intel Ethernet Connection (17) I219-V 0x8086 0x1a1f
Intel Ethernet Connection (17) I219-LM 0x8086 0x1a1c
Intel Ethernet Connection (17) I219-V 0x8086 0x1a1d

2、USB驱动:USB Network Native Driver for ESXi
截止发文最新版为ESXi703-VMKUSB-NIC-FLING--component-.zip
此驱动支持的USB列表
Vendor Chipset VendorID ProductID
AQUANTIA AQC111U 0xe05a 0x20f4
AQUANTIA Aquantia Pacific 0x2eca 0xc101
ASIX AX88179 0x0b95 0x1790
ASIX AX88178a 0x0b95 0x178a
CISCO LINKSYS RTL8153 0x13b1 0x0041
DLINK AX88179 0x2001 0x4a00
INSYDE SOFTWARE CORP Insyde Software Corp. 0x0b1f 0x03ee
LENOVO RTL8153 0x17ef 0x3062
LENOVO RTL8153 0x17ef 0x3069
LENOVO RTL8153 0x17ef 0x720a
LENOVO AX88179 0x17ef 0x304b
LENOVO RTL8153 0x17ef 0x7205
NVIDIA RTL8153 0x0955 0x09ff
Qualcomm NA 0x0b05 0x1976
Qualcomm NA 0x1A56 0x3100
REALTEK RTL8152 0x0bda 0x8152
REALTEK RTL8153 0x0bda 0x8153
REALTEK RTL8156 0x0bda 0x8156
REALTEK RTL8153 0x045e 0x07c6
SITECOMEU AX88179 0x0df6 0x0072
SUPERMICRO Supermicro computer Inc 0x15d9 0x1b83
TP-LINK RTL8153 0x2357 0x0601
TRENDNET AQC111U 0xe05a 0x20f4


3、NVMe硬盘驱动:Community NVMe Driver for ESXi
截止发文最新版为nvme-community-driver_1.0.1.0-3vmw.700.1.0.-component-.zip
此驱动支持的NVMe硬盘列表
Vendor VendorID ProductID
ADATA 0x1cc1 8201
Micro/Crucial 0xc0a9 0x2263
Silicon Motion 0x126f 0x2262

打开电脑上的Windows PowerShell(管理员身份运行),之前用自带的5.1一直报错,于是更新了PowerShell 7 就没问题了,PowerShell 7 官网 https://aka.ms/PSWindows,另外PowerCLI 13.0中的VMware.ImageBuilder 模块是依赖Python3.79,需要安装。

Get-Module -Name VMware.PowerCLI       #查看版本已经提示13.0了。

,注意安装路径,后面需要用到。安装完后可以再次双击安装包查看

下载地址:https://www.python.org/downloads/release/python-379/

或者在开始菜单点击所有应用,找到新安装的python文件右键打开文件位置,然后再从快捷方式找到源文件。

得到文件地址:C:Users90543AppDataLocalProgramsPythonPython37

安装要求的Python模块,同例修改文件夹

在Powershell中配置Python3.7路径,同例修改文件夹

添加信任模块

set-ExecutionPolicy RemoteSigned


下载地址 https://bootstrap.pypa.io/get-pip.py

Python 3.79   下载链接:https://www.python.org/downloads/release/python-379/

esxi7.0 下载连接:https://customerconnect.vmware.com/downloads/details?downloadGroup=OEM-ESXI70-HPE&productId=974

ESXi-Customizer-PS2.9下载链接:https://github.com/VFrontDe-Org/ESXi-Customizer-PS/releases/tag/2.9.0

驱动包下载:https://pan.baidu.com/s/1-UzeEg2l0v7N8GDWqIMh8Q 提取码:n77c (由公众号“神奇码农”提供)

包含intel I219-v/lm驱动最高到(17)镜像,链接: https://pan.baidu.com/s/1ldAis-npaywdBUd6zCtWdA?pwd=6666 提取码: 6666 

到此这篇vgadriver是什么驱动(vga driver)的文章就介绍到这了,更多相关内容请继续浏览下面的相关推荐文章,希望大家都能在编程的领域有一番成就!

版权声明


相关文章:

  • win11安装vmware(win11安装vmware16蓝屏)2025-05-11 20:09:08
  • stan工具(strace工具)2025-05-11 20:09:08
  • raiseasuilen是专业乐队吗(raise a suilen主唱)2025-05-11 20:09:08
  • redis连接数配置(redis连接数怎么看)2025-05-11 20:09:08
  • oracle教程 菜鸟(oracle教程 csdn)2025-05-11 20:09:08
  • druid连接池配置文件(druid 连接池配置)2025-05-11 20:09:08
  • druiddatasource 密码加密(druid加密算法)2025-05-11 20:09:08
  • docker版本分为什么与什么(docker 不同版本 兼容)2025-05-11 20:09:08
  • argparser怎么安装(安装arch)2025-05-11 20:09:08
  • aurora是什么品牌(aurora是什么品牌的衣服)2025-05-11 20:09:08
  • 全屏图片