Friday, September 24, 2021

ESXI 6.5 on Intel Nuc (another install)

 
https://teebeedee.org/2016/11/install-vmware-esxi-6-5-intel-nuc-part-1/
https://teebeedee.org/2016/11/install-vmware-esxi-6-5-intel-nuc-part-2/

configuration:
https://teebeedee.org/2016/11/anatomy-home-lab/

Intel NUC Kit D54250WYKH – A 4th generation NUC with an i5 processor
Kingston 8GB Module DDR3L 1600MHz – Two per, maxing the NUC out at 16GB
Intel SSD 530 Series 240GB mSATA Drive – Flash storage
Western Digital WD10JPVX Blue 1TB SATA Drive – Magnetic storage
SanDisk 16GB Ultra Fit USB 3.0 Flash Drive – ESXi boot drive

Install VMware ESXi 6.5 on Intel NUC (Part 1/2)

With VMware vSphere 6.5 released recently, I decided to rebuild my Intel NUC based homelab. My preferred method is to create a bootable USB drive with the ESXi install media on it. Then install from the ESXi USB to the dedicated NUC’s boot USB. This method avoids non-unique ESXi installs, which is a common issue with the VMware Workstation pre-install method.

Prerequisites

In order to create our Intel NUC specific ESXi install media, we need to gather the necessary files. Make sure to grab the newest versions of the following:

  • vSphere ESXi 6.5 Offline Bundle
    • This is a collection of all the components and packages that make up ESXi. You need the Offline Bundle, not the ISO, for this exercise.
  • SATA AHCI driver
    • This driver is for the Intel NUC SATA controller. Even if your NUC doesn’t have a SATA disk or even the controller, it doesn’t hurt to add this driver.
  • USB 3.0 Ethernet driver from William Lam
    • Add more NICs to your NUC via USB 3.0. Like the storage driver, if you don’t have a USB 3 ethernet adapter, it doesn’t hurt to add this driver.
  • ESXi-Customizer-PS PowerShell script from Andreas Peets
    • This script will do all the heavy lifting, combining the offline bundle and driver VIBs into an ISO for us.

Create ISO

First, let’s create a project directory for our files. Let’s call it C:\esxi-nuc .

Copy the ESXi 6.5 offline bundle ZIP file (ex. VMware-ESXi-6.5.0-4564106-depot.zip ) and the ESXi-Customizer-PS script (ex. ESXi-Customizer-PS-v2.4.ps1 ) to this directory.

Create a sub-directory under our project directory to hold our VIBs. Let’s get creative and call it C:\esxi-nuc\vibs .

Copy the SATA AHCI driver VIB (ex. sata-xahci-1.38-1.x86_64.vib ) and the USB 3.0 Ethernet driver VIB (ex. vghetto-ax88179-esxi65.vib ) to this sub-directory.

If you’ve copied all the files to their respective folders properly, it should look something like this:

C:\esxi-nuc
C:\esxi-nuc\ESXi-Customizer-PS-v2.4.ps1
C:\esxi-nuc\VMware-ESXi-6.5.0-456106-depot.zip
C:\esxi-nuc\vibs
C:\esxi-nuc\vibs\sata-xahci-1.38-1.x86_64.vib
C:\esxi-nuc\vibs\vghetto-ax88179-esxi65.vib

Now we have to run the ESXi-Customizer-PS script to pull everything together and generate an ISO file. So fire up PowerShell, navigate to our project directory which is “C:\esxi-nuc” in our example, and run the following command:

.\ESXi-Customizer-PS-v2.4.ps1 -izip VMware-ESXi-6.5.0-4564106-depot.zip -pkgDir vibs -nsc

Make sure to use the version numbers that match your downloaded files. Also, don’t forget the “-nsc” flag, as that will let us ignore the unsigned driver VIBs and continue.

If everything went as planned, you should now have a new ISO file in the project directory that is an ESXi 6.5 and VIBs combination.

Next Steps

Now that we have our customized ISO, we need to turn it into a bootable USB and then install it on our NUCs. We’ll do just that in part two.


Install VMware ESXi 6.5 on Intel NUC (Part 2/2)

In the first post, we created an ISO image of VMware ESXi 6.5 to install on our Intel NUC. Now we turn that ISO into a bootable USB and do the install.

Make Bootable USB

We’re going to use an application called Rufus to create our bootable USB, so download and install it. Now start Rufus.

Rufus - Select ISO

First, make sure that your to select your target USB flash drive in the Device drop down menu. Then, change the “Create a bootable disk using” drop down menu to “ISO Image” (call-out 1). Then click the image selection button (call-out 2) to find and open our customized ISO (ex. ESXi-6.5.0-4564106-standard-customized.iso ).

Rufus - Start USB Build

You should now see an updated new volume label which matches the ISO image you chose. Click the Start button to begin building the bootable USB (call-out 3).

Rufus - 'menu.c32' Warning

A warning may pop up about an older version of the ‘menu.c32’ file. This file is part of Syslinux and helps make the ISO/USB bootable. If we don’t replace the older version of the file then our USB won’t boot properly, so click Yes (call-out 4).

Rufus - Data Destruction Warning

Rufus will remind you, forcefully, that you’re about to wipe out all the data on the target USB drive. You backed up anything on the flash drive that you wanted to keep, right? If you’re sure you’re ready to continue, click OK (call-out 5).

Rufus - Building the USB

The bootable USB will now be built by Rufus. Rufus basically does a bit of work to make the USB drive bootable, and then extracts the contents of the ISO file to it.

Rufus - Finished

When finished, you’ll see that the device name has changed at the top, the green progress bar is full, and the status reads “READY”. Click the Close button to exit out of Rufus (call-out 6).

Now you can eject your USB drive as it’s ready for use as a vSphere ESXi installation drive.

Install ESXi on NUC

If you’ve installed ESXi before, this should be really straight forward, and I won’t bother with all the details. Essentially you need to make sure to connect your Intel NUC to a monitor and keyboard, and that the drive that you want to install ESXi into is either installed or plugged in. Remember that in my home lab example, that I’ll be installing ESXi on a USB drive. This means that both the USB drive that we’ve built to install ESXi from and the USB drive that we’ll be installing ESXi to have to be plugged into the NUC.

As a reminder, F10 will allow you to select your boot device on the Intel NUC.

In order to get the USB Ethernet adapter to work, we need to enable the ESXi Shell, login, and run the following command:

esxcli system module set -m=vmkusb -e=FALSE

Then log out of the shell, disable it again and reboot the host.

Bigger and Better Things

Now that we have successfully installed ESXi 6.5 onto our NUC, we can begin to do some fun and interesting things. Like, say, install ESXi on some more NUCs and then create a vSAN cluster. Stay tuned.


--30--

No comments:

Post a Comment