esxi5.5安装nvme驱动

esxi5.5的驱动包

https://files.cnblogs.com/files/itfat/VMW-ESX-5.5.0-nvme-1.0e.0.30-2284103.zip

1. Copy the VIB or offline bundle to the ESX server. Technically, you can
place the file anywhere that is accessible to the ESX console shell,
but for these instructions, we'll assume the location is in '/tmp'.

Here's an example of using the Linux 'scp' utility to copy the file
from a local system to an ESX server located at 10.10.10.10:
scp VMware_bootbank_net-driver.1.1.0-1vmw.0.0.372183.vib root@10.10.10.10:/tmp

2. Issue the following command (full path to the file must be specified):
esxcli software vib install -v {VIBFILE}
or
esxcli software vib install -d {OFFLINE_BUNDLE}

In the example above, this would be:
esxcli software vib install -v /tmp/VMware_bootbank_net-driver.1.1.0-1vmw.0.0.372183.vib

Note: Depending on the certificate used to sign the VIB, you may need to
change the host acceptance level. To do this, use the following command:
esxcli software acceptance set --level=<level>
Also, depending on the type of VIB being installed, you may have to put
ESX into maintenance mode. This can be done through the VI Client, or by
adding the '--maintenance-mode' option to the above esxcli command.

执行以下命令进入维护模式并允许安装第三方包

# esxcli system maintenanceMode set -e true -t 0

# esxcli software acceptance set --level=CommunitySupported

原文地址:https://www.cnblogs.com/itfat/p/15147599.html