To install async drivers using esxcli and the async driver VIB file:
- Extract the contents of the async driver zip file.
- Identify the
offline-bundle.zip
file(s). - Extract the contents of the
offline-bundle.zip
file(s). - Identify the
async-driver.vib
file(s). - Log in to the ESXi host using the vSphere Client with administrator privileges, such as root.
- Using Datastore Browser, upload the
async-driver.vib
file(s) to an ESXi host’s datastore. - Enter the host into maintenance mode.
- Log in as root to the ESXi console through SSH or iLO/DRAC.
- Run this command to install drivers from the VIB file:
esxcli software vib install –v /path/async-driver.vib
Note: This command requires an absolute path.
For example:
esxcli software vib install –v /vmfs/volumes/datastore/async-driver.vib
Note: If hostd is not responding, try using localcli instead of esxcli.
For example:
localcli software vib install –v /vmfs/volumes/datastore/async-driver.vib
- Restart the ESXi host.
- To confirm if the VIB is installed successfully, run this command:
esxcli software vib list | grep -i vib_name
- Exit maintenance mode.
Note: An ESXi host can be updated remotely using the
esxcli
utility, which is part of the vSphere CLI. For more information on using
esxcli
, see the
vSphere Command-Line Interface Documentation.