本篇主要讲 ESXi 打包 I219V 网卡驱动的过程.
说来话长, 上次买的 Gen10+ 出现了一点意外, 后来干脆转手咸鱼卖掉了.(甚至还赚了一点…)
现在的硬件配置之后再介绍, 先说换了家用主板导致 ESXi 缺少网卡驱动无法安装这个问题的解决方法.
由于 ESXi 主要的管理功能都通过 Web UI 实现, 所以安装 ESXi 时如果没有网卡驱动将会无法继续.
可是 ESXi 是为服务器主板设计的操作系统, 部分家用主板的板载网卡无法被识别, 再插网卡也浪费 PCI-E 槽位.
解决方法就是预先将驱动打包在 ESXi 的 iso 镜像中.
我用的主板是 华擎(ASRock)B460M Pro4
, 板载网卡是 I219V.
这个 I219V 有很多的小版本, 较新的部分版本在 ESXi 中没有驱动, 我的是 Ethernet Connection (12) I219-V
, 网上找到了的驱动支持以下版本.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| Ethernet Connection (10) I219-LM Ethernet Connection (10) I219-V Ethernet Connection (11) I219-LM Ethernet Connection (11) I219-V Ethernet Connection (12) I219-LM Ethernet Connection (12) I219-V Ethernet Connection (13) I219-LM Ethernet Connection (13) I219-V Ethernet Connection (14) I219-LM Ethernet Connection (14) I219-V Ethernet Connection (15) I219-LM Ethernet Connection (15) I219-V Ethernet Connection (16) I219-LM Ethernet Connection (16) I219-V Ethernet Connection (17) I219-LM Ethernet Connection (17) I219-V
|
加上 ESXi 原本内置的驱动, 应该大部分的 I219V 都能成功驱动.
本来这个社区版的驱动可以在官网的 这里 下载, 可是官网链接好像无法访问了.
可以从 我的网盘下载.
之后还需要下载 VMWare 官网的 ESXi Offline Bundle.
之后用以下命令 (可能需要自己根据情况修改) 可以在 powershell 打包生成所需要的 iso 文件, 烧录进 U 盘即可以正常安装.
1 2 3 4 5 6 7 8 9 10 11
| Install-Module -Name VMware.PowerCLI $esxiOfflineBundle = "E:\esxi\VMware-ESXi-7.0b-16324942-depot.zip" $intelNicOfflineBundle = "E:\esxi\Intel-NUC-ne1000_0.8.4-3vmw.670.0.0.8169922-offline_bundle-16654787.zip" $esxiImageProfileName = "ESXi-7.0b-16324942-standard" $newImageProfileName = "ESXi-7.0b-Intel-i219" Add-EsxSoftwareDepot $esxiOfflineBundle Add-EsxSoftwareDepot $intelNicOfflineBundle $IntelNUCVib = Get-EsxSoftwarePackage | where {$_.name -eq "ne1000-intelnuc" -and $_.version -eq "0.8.4-3vmw.670.0.0.8169922"} New-EsxImageProfile -CloneProfile $esxiImageProfileName -Name $newImageProfileName -Vendor vGhetto Add-EsxSoftwarePackage -ImageProfile $newImageProfileName -SoftwarePackage $IntelNUCVib Export-EsxImageProfile -ImageProfile $newImageProfileName -ExportToIso -FilePath "E:\esxi\ESXi-7.0b-Intel-i219.ISO"
|
p.s. 还有一种使用 ESXi-Customizer-PS
脚本打包的方法, 但是我尝试后没有成功. 详见这里.
如果你懒得自己动手, 我也打包好了一份最新的 ESXi 7.0 Update 2 供下载.