Install ESXi on Intel NUC 10i5FNH

I’m just updating my Home-Lab and bought 2x Intel Nuc 10i5FNH.

I used the following components, to be able to try also some vSAN stuff (hopefully bought the right things)

  • Intel NUC 10i5FNH
  • SAN Disk USB-Stick Ultra Fit USB3.1 32 GB (Install ESXi)
  • Samsung 860 EVO Basic (500GB, 2.5″)
  • SSD Samsung 860 EVO, 250GB, M.2, 2280 Basic
  • Corsair Vengeance SO-DDR4 32GB 2-Kit

Make sure you use ESXi Version 7.0 Update 1, because this version has the network driver for the Intel Nuc already incluced. Otherwise you get the following error message during the Installation. “Exception: No vmknic tagged for management found”. If you would like to use an older version, you have to include the network driver manually into the installation medium.

A good documentation how to do it you find on the blog of virten.net:
https://www.virten.net/2020/03/esxi-on-10th-gen-intel-nuc-comet-lake-frost-canyon/

I manually downloaded the latest version available from VMware and created an iso myself.

# (If not done yet) Install PowerCLI Module 
Install-Module -Name VMware.PowerCLI -Scope CurrentUser

# Add VMware Software Depot
Add-EsxSoftwareDepot https://hostupdate.vmware.com/software/VUM/PRODUCTION/main/vmw-depot-index.xml

# Find latest available Profile
$image_profiles = Get-EsxImageProfile
$image_profiles | where name -like "ESXi-7.*" | Sort-Object modifiedTime

# Export Profile to Iso
Export-EsxImageProfile -ImageProfile "ESXi-7.0U1b-17168206-standard" -ExportToIso .\7.0U1_Nuc.iso

Then I used the rufus portable edition to create an bootable USB-Stick. (https://rufus.ie/)

After that I just booted from the USB Stick and Installed ESXi on the 32GB Ultra Fit USB Stick.