• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/10

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

10 Cards in this Set

  • Front
  • Back
Create an Installer ISO Image with a Custom Installation or Upgrade Script
1. Download the ESXi ISO image.
2. Mount the ISO image.
3. Copy the contents of the CD-ROM to another folder.
4. Copy the kickstart file to /esxi_cdrom
5. Modify the boot.cfg file to specify the location of the installation or upgrade script using the kernelopt option.
6. Re-create the ISO image.
Create Image Profiles
Installation Guide, pages 131-139

1. Connect to the vCenter Server from PowerCLI with the connect-viserver command.

2. Run Add-ESXSoftwareDepot to import the base ESXi 5.0 image
(this can point to a zip file with the bits, or out to a URL, for example: Add-ESXSoftwareDepot -DepotURL https://hostupdate.vmware.com/software/VUM/PROUDCTION/main/vmw-depot-index.xml

3. Repeat the Add-ESXSoftwareDepot command to add additional modules as necessary (for example, to add the EMC PowerPath software package to the depot, run Add-ESXSoftwareDepot -DepotURL "C:/Software/EMCPower.x.x.x.zip")

4. To verify that the software packages were successfully added to the depot, run Get-ESXSoftwarePackage to retrieve a list

5. Run Get-ESXImageProfile to retrieve a list of all profiles associated with available software depots.

6. Create a new profile using the New-ESXImageProfile command (for example: New-ESXImageProfile -CloneProfile "ESXi-5.0.0-20120302001-standard" -Name "AutoDeploy_Profile"

7. Run Get-ESXImageProfile again to ensure that the profile was created successfully. Note the Acceptance Level column. The Acceptance level will dictate what types of VIBs can be added to the image profile.
Export Image Profiles
To export an image profile:

In ZIP format:
Export-ESXImageProfile -ImageProfile "AutoDeploy_Profile" -ExportToBundle -FilePath "C:\Software\Exports\AutoDeploy_Profile.zip"

In ISO format:

Export-ESXImageProfile -ImageProfile "AutoDeploy_Profile" -ExportToISO -FilePath "C:\Software\Exports\AutoDeploy_Profile.ISO"
Install/Uninstall Custom Drivers
1. Connect to the vCenter Server from PowerCLI with the connect-viserver command.
2. Run Get-ESXSoftwarePackage to retrieve a list of software packages included in all associated software depots
3. Run the Add-ESXSoftwarePackage to add VIBs to the image profile
(example: Add-ESXSoftwarePackage -ImageProfile "AutoDeploy_Profile" -SoftwarePackage powerpath.lib.esx)

4. Repeat as necessary to add additional software packages.
5. To verify that the software packages were added successfully, an administrator can use the Compare-ESXImageProfile cmdlet to compare the custom profile against the base ESXi image profile

6. An administrator may also remove a software package from an image profile by running the Remove-ESXSoftwarePackage command (for example, Remove-ESXSoftwarePackage -ImageProfile "AutoDeploy_Profile" -SoftwarePackage powerpath.lib.esx
Configure advanced bootloader options: ks
ks=protocol://serverpath

Performs a scripted installation with a script located on the network at the given URL. Protocol can be http, https, ftp, or nfs.
Configure advanced bootloader options: nameserver
nameserver=ip address

Specifies a domain name server for the network interface to be used for downloading the installation script and installation media.
Configure advanced bootloader options: ip
ip=ip address

Sets up a static IP address for the network interface to be used for downloading the installation script and the installation media.
Configure advanced bootloader options: netmask
netmask=subnet mask

Specifies the subnet mask for the network interface that downloads the installation script and the installation media.
Configure advanced bootloader options: gateway
gateway=ip address

Set this network gateway as the default gateway for the network interface to be used for downloading the installation script and installation media.
Configure kernel options
The boot loader configuration file, boot.cfg , specifies the kernel, the kernel options, and the boot modules that the mboot.c32 boot loader uses in an ESXi installation. You can modify the kernelopt line of the boot.cfg file to specify the location of an installation script or to pass other boot options. Below are the available commands?:

Command: title=STRING
Description: Sets the bootloader title to STRING

Command: kernel=FILEPATH
Description: Sets the kernel path to FILEPATH

Command: kernelopt=STRING
Description: Appens STRING to the kernel boot options.

Command: modules=FILEPATH1---FILEPATH2
Description: Lists the modules to be loaded, separated by three hypens.