admin 管理员组文章数量: 1184232
esxi7.0 打包网卡驱动
- 下载
- esxi
- 网卡驱动
- nvme驱动
- VMware PowerCLI
- 环境配置
- 导入包
- 生成镜像
- 参考文章
下载
esxi
https://www.vmware/cn/try-vmware.html
点击免费下载试用版
或者
https://customerconnect.vmware/patch.
网卡驱动
https://flings.vmware/community-networking-driver-for-esxi/
nvme驱动
https://flings.vmware/community-nvme-driver-for-esxi
VMware PowerCLI
https://developer.vmware/web/tool/12.6.0/vmware-powercli
环境配置
将所有文件都拷贝到C:\Program Files\WindowsPowerShell\Modules
Expand-Archive .\VMware-PowerCLI-12.6.0-19610541.zip -DestinationPath ./
Get-ChildItem * -Recurse|Unblock-File
Get-Module -Name Vmware.PowerCLI -ListAvailable
set-ExecutionPolicy RemoteSigned
# 输入y
Set-PowerCLIConfiguration -Scope User -ParticipateInCEIP $false
# 输入y
Import-Module VMware.ImageBuilder
导入包
Add-EsxSoftwareDepot .\VMware-ESXi-7.0U3f-20036589-depot.zip
Add-EsxSoftwareDepot .\Net-Community-Driver_1.2.7.0-1vmw.700.1.0.15843807_19480755.zip
Add-EsxSoftwareDepot .\nvme-community-driver_1.0.1.0-3vmw.700.1.0.15843807-component-18902434.zip
查看可用配置
Get-EsxImageProfile
PS C:\Program Files\WindowsPowerShell\Modules> Get-EsxImageProfile
Name Vendor Last Modified Acceptance Level
---- ------ ------------- ----------------
ESXi-7.0U3f-20036589-no-tools VMware, Inc. 6/30/2022 3:... PartnerSupported
ESXi-7.0U3f-20036589-standard VMware, Inc. 7/12/2022 12... PartnerSupported
ESXi-7.0U3sf-20036586-no-tools VMware, Inc. 6/30/2022 1:... PartnerSupported
ESXi-7.0U3sf-20036586-standard VMware, Inc. 7/12/2022 12... PartnerSupported
克隆生成自己的配置
New-EsxImageProfile -CloneProfile "ESXi-7.0U3f-20036589-standard" -name "ESXi-7.0U3f-20036589-test" -vendor "aaaa"
# 添加网卡包
Add-EsxSoftwarePackage -ImageProfile "ESXi-7.0U3f-20036589-test" -SoftwarePackage "net-community"
# 添加nvme
Add-EsxSoftwarePackage -ImageProfile "ESXi-7.0U3f-20036589-test" -SoftwarePackage "nvme-community"
生成镜像
Export-EsxImageProfile -ImageProfile "ESXi-7.0U3f-20036589-test" -ExportToIso -FilePath ESXi7.0.3f-test.iso
参考文章
https://www.sqmn666/archives/esxi70-feng-zhuang-zui-xin-ban-ying-te-er-i225i219-wang-ka-qu-dong
https://blog.csdn/teamlet/article/details/125970472
本文标签: 网卡驱动
版权声明:本文标题:esxi7.0 打包网卡驱动 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.roclinux.cn/b/1754677991a3027425.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论