通过ESXi-Customizer-PS为EXSi封装第三方驱动
H3C R4900 G2服务器开启Raid安装ESXi时,找不到硬盘驱动的。通过 VMware-PowerCLI 和 ESXi-Customizer-PS 封装Raid卡驱动。
所需软件
Windows10 64位环境
- VMware-PowerCLI (Download)
- ESXi-Customizer-PS (Download)
- ESXi(Download)网络好的可以从VMware在线下载镜像
- H3C R4900 G2驱动 后缀为vib文件 (Download)
安装VMware-PowerCLI
解决办法:以管理员身份运行Windows PowerShell输入
安装依赖
Install-Module -Name VMware.PowerCLI
Set-ExecutionPolicy Unrestricted
封装驱动
将下载好的EXSi、SXi-Customider-PS-v2.6.0.ps1和驱动文件放在同一目录下,我放在D盘根目录下,打开VMware-PowerCLI。
D: #进去D盘
.\ESXi-Customizer-PS-v2.6.0.ps1 -izip .\ESXi670-201906002.zip -pkgDir D:\ #封装镜像
如果提示以下错误
Add VIB scsi-aacraid 6.0.6.2.1.57013-1OEM.600.0.0.2494585 [OK, replaced 1.1.5.1-9vmw.670.0.0.8169922]
Exporting the Imageprofile to 'D:\\ESXi-6.7.0-20190604001-standard-customized.iso'. Please be patient ...
An unexpected error occured:
Could not find a trusted signer.
If requesting support please be sure to include the log file
C:\Users\admin\AppData\Local\Temp\ESXi-Customizer-PS-2716.log
输入$DeployNoSignatureCheck=$true
如果一切正常会显示All done则表示封包完成,将镜像写入U盘安装即可。
H3C R4900 G2系统安装可参考官方文档 http://www.h3c.com/cn/Service/Document_Software/Document_Center/Server/Catalog/Rack_server/H3C_R4900_G2/Software_Installation/Installation_Manual/H3C_R4900_G2_CZXT_IG-6W102/
文章目录
出现了 Could not find a trusted signer ,应该加参数: -nsc (:use -NoSignatureCheck with export")如:
.\ESXi-Customizer-PS-v2.6.0.ps1 -nsc -izip .\ESXi670-201906002.zip -pkgDir D:\
非技术的路过。