ESXi7.0封装Intel I225V B3网卡驱动

2022-06-12 16:55:26 6点赞 41收藏 11评论

ESXi7.0封装Intel I225V B3网卡驱动

刚买了个最近很流行的N5105第三版4口软路由,双nvme,intel 2.5G网卡,看着不错。习惯性先上个当前最新的esxi 7.0u3d,然后尴尬了,居然没识别网卡,看了下这个2.5G网卡esxi默认不支持,需要安装社区版驱动,这里就简单记录下,其实方法和之前的《ESXi 封装I219V网卡驱动》差不多,只不过版本和驱动有点不一样。

0x10 准备工作

管理员权限打开powershell
安装工具
Install-Module -Name VMware.PowerCLI
更改策略
Set-ExecutionPolicy RemoteSigned

esxi的社区有很多爱好者在做各种各样的驱动兼容,这里要用的就是网卡驱动
Net-Community-Driver_1.2.7.0-1vmw.700.1.0.15843807_19480755.zip

再看看esxi版本,这里选当前组新版7.0u3d:ESXi-7.0U3d-19482537-standard

ESXi7.0封装Intel I225V B3网卡驱动

这次从本地进行打包,就不走在线的方式了,当前最新depot包:VMware-ESXi-7.0U3d-19482537-depot.zip

将系统包和驱动包都放到一个目录,比如 “d:ESXi”

0x20 打包镜像

在powershell执行

$esxiOfflineBundle = "VMware-ESXi-7.0U3d-19482537-depot.zip"
$netOfflineBundle = "Net-Community-Driver_1.2.7.0-1vmw.700.1.0.15843807_19480755.zip"
$baseProfile = "ESXi-7.0U3d-19482537-standard"
$newProfile = "ESXi-7.0U3d-19482537-i225"
$newVendor = "white-alone.com"

Add-EsxSoftwareDepot ."$esxiOfflineBundle"
Add-EsxSoftwareDepot ."$netOfflineBundle"
New-EsxImageProfile -CloneProfile "$baseProfile" -name "$newProfile" -Vendor $newVendor
Add-EsxSoftwarePackage -ImageProfile "$newProfile" -SoftwarePackage "net-community"
Export-ESXImageProfile -ImageProfile "$newProfile" -ExportToIso -filepath "$newProfile.iso"

Export-ESXImageProfile -ImageProfile "$newProfile" -ExportToBundle -filepath "$newProfile.zip"

这就打包好了集成了i225驱动的ESXi 7.0u3d的镜像了。

ESXi7.0封装Intel I225V B3网卡驱动

0x30 安装系统

然后就可以愉快的用iso安装或者用zip升级了。

ESXi7.0封装Intel I225V B3网卡驱动

作者声明本文无利益相关,欢迎值友理性交流,和谐讨论~

展开 收起
11评论

  • 精彩
  • 最新
  • 踩坑记录:
    首先对这个是不是原贴保持怀疑
    其次对于其中的一些参数来源进行说明和扩展:
    关于$baseProfile的值,在声明$esxiOfflineBundle之后,进行 Get-EsxImageProfile命令,查看所有可用的映像配置文件,$baseProfile的值应当为其中的一个,所以正确的变量声明顺序应为:声明$esxiOfflineBundle,声明$netOfflineBundle,声明$newVendor,运行Get-EsxImageProfile,声明$baseProfile,声明$newProfile。

    校验提示文案

    提交
    变量声明没有顺序要求,只要没提前调用就不影响。。。

    校验提示文案

    提交
    收起所有回复
  • $esxiOfflineBundle = "VMware-ESXi-7.0U3d-19482537-depot.zip"
    $netOfflineBundle = "Net-Community-Driver_1.2.7.0-1vmw.700.1.0.15843807_19480755.zip"
    $baseProfile = "ESXi-7.0U3d-19482537-standard"
    $newProfile = "ESXi-7.0U3d-19482537-i225"
    $newVendor = "white-alone.com"

    Add-EsxSoftwareDepot .\"$esxiOfflineBundle"
    Add-EsxSoftwareDepot .\"$netOfflineBundle"
    New-EsxImageProfile -CloneProfile "$baseProfile" -name "$newProfile" -Vendor $newVendor
    Add-EsxSoftwarePackage -ImageProfile "$newProfile" -SoftwarePackage "net-community"
    Export-ESXImageProfile -ImageProfile "$newProfile" -ExportToIso -filepath "$newProfile.iso"
    Export-ESXImageProfile -ImageProfile "$newProfile" -ExportToBundle -filepath "$newProfile.zip"

    校验提示文案

    提交
  • 感谢大佬分享,所以大佬能不能分享下打包好的镜像!

    校验提示文案

    提交
  • 感谢大佬分享,所以大佬能不能分享下打包好的镜像!

    校验提示文案

    提交
  • 大佬,能发一下esxi安装包吗,我的电脑弄不了依赖,没办法封装i226驱动,我看了一下你下载驱动安装包支持I226,麻烦发一下系统安装包,谢谢!!812141780@qq.com

    校验提示文案

    提交
  • 大佬,可以分享一下封装包吗?308156113@qq.com

    校验提示文案

    提交
  • 看不懂,第一步就卡住了 [吐血推荐]

    校验提示文案

    提交
  • 大佬,可以分享一下打包好集成了i225驱动的ESXi 7.0u3d的镜像吗?发一个63224418@qq.com

    校验提示文案

    提交
  • 大佬,有错误提示,怎么解决
    PS D:\ESXi> Add-EsxSoftwareDepot .\"$esxiOfflineBundle"
    Add-EsxSoftwareDepot : Failed to initialize the VMware.ImageBuilder PowerCLI module because of error: Unsupported Pytho
    n version. VMware.ImageBuilder supports Python 3.7.1 executable_path>. See the PowerCLI Compatibility Matrixes for information on the Py
    thon requirements.
    所在位置 行:1 字符: 1
    + Add-EsxSoftwareDepot .\"$esxiOfflineBundle"
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [Add-EsxSoftwareDepot], Exception
    + FullyQualifiedErrorId : System.Exception,VMware.ImageBuilder.Commands.AddDepot

    校验提示文案

    提交
  • 大佬,可以分享一下封装包吗?感谢。。64772862@qq.com

    校验提示文案

    提交
提示信息

取消
确认
评论举报

相关文章推荐

更多精彩文章
更多精彩文章
最新文章 热门文章
目录
  • 0x10 准备工作

  • 0x20 打包镜像

  • 0x30 安装系统

41
扫一下,分享更方便,购买更轻松