Install ESXi patch via depot zip file
From Notes_Wiki
Home > VMWare platform > VMWare vSphere or ESXi > Install ESXi patch via depot zip file
To install ESXi patch on top of existing ESXi version (Eg to take it to a particular update / build number, ideally greater than current build) use:
- Download the required patch depot file from https://my.vmware.com/group/vmware/patch
- Select product as ESXi embedded and installable
- Best option is to specify build number in the search fields and search
- scp the downloaded depot file to some local datastore on ESXi host (/vmfs/volumes/*)
- We can check profiles present in the offline bundle using:
- esxcli software sources profile list -d <full-path-to-zip-file>
- Then we can update to specific profile using:
- esxcli software profile update -d <full-path-to-zip-file> --profile=<profile-name-from-above-output>
- (Optionally) If not using above steps then update all the vibs as per patch using:
- esxcli software vib update -d <full-absolute-path-to-zip-file>
- In this case we are not choosing any profile but using all the vibs in the given zip file.
- Note that relative path will not work with above command
Refer:
Home > VMWare platform > VMWare vSphere or ESXi > Install ESXi patch via depot zip file