Sun Microsystems, Inc.  Oracle System Handbook - ISO 7.0 May 2018 Internal/Partner Edition
   Home | Current Systems | Former STK Products | EOL Systems | Components | General Info | Search | Feedback

Asset ID: 1-71-2036979.1
Update Date:2017-08-01
Keywords:

Solution Type  Technical Instruction Sure

Solution  2036979.1 :   How to Create a Remastered ISO With OVN (Xsigo) Drivers Slipstreamed in for VMware ESXi 6.0  


Related Items
  • Oracle Fabric Interconnect F1-15
  •  
  • Oracle Fabric Interconnect F1-4
  •  
Related Categories
  • PLA-Support>Sun Systems>SAND>Network>SN-SND: Oracle Virtual Networking
  •  




In this Document
Goal
Solution
References


Applies to:

Oracle Fabric Interconnect F1-4 - Version All Versions to All Versions [Release All Releases]
Oracle Fabric Interconnect F1-15 - Version All Versions to All Versions [Release All Releases]
Information in this document applies to any platform.

Goal

 Provides information on how to create a bootable VMaware ESXI 6.0 ISO that contains OVN (Xsigo) host drivers slipstreamed in for remote (no local storage and/or physical ethernet onboard devices) for PXE, iSCSI or SAN Boot installations.

Solution

Remastered ISO Creation for ESXi 6.0 Hosts

For Oracle vNICs and vHBAs to be available to the ESXi 6.0 OS, you must inject the Oracle Virtual Networking host drivers into the native ESXi OS. This process is called creating a remastered ISO.

For this procedure, be aware of the following:

■ You must have a Microsoft Windows server capable of supporting Microsoft Windows PowerShell.

■ Creating the remastered ISO occurs through the VMware vSphere plug-in for Microsoft Windows PowerShell. The Windows server must have this tool installed on it.

■ Creating a remastered ISO for ESXi 6.0 hosts is supported only on a Windows server running the plug-in. The Windows server's requirements are determined by the version of PowerShell.

■ You must use a preconfigured ESXi bundle as a baseline, which is available from VMware's web site. Then, inject the Oracle Virtual Networking bits into that bundle.

■ You must have full administrator rights on the Windows server where you will be creating the remastered ISO.

Create the Remastered ISO

Use this procedure to create a remastered ISO. For this task, assume you are using the working directory \images\New for the user named admin.

1. Install PowerShell on the Windows server if you have not already done so.

2. Install the vSphere PowerCLI plug-in if you have not done so already.

3. Download the VMware-6.x.x.zip file to the Windows server.

4. If you have not already done so, download the current Oracle Virtual Networking host driver for ESXi 6.0 hosts as documented in Download and Install Supported Firmware Versions for HCAs on page 10.

5. Start PowerCLI and connect to the vCenter server.

PowerCLI C:\images\New PowerCLI> Connect-VIServer 192.168.11.12

 This example shows connecting to a vCenter server with the IP address 192.168.11.12, but you can also connect by using a fully-qualified domain name.

6. In PowerCLI, import the ESXi 6.0.0 bundle and the Oracle Virtual Networking host drivers for ESXi 6.0 hosts in the PowerCLI application.

This example adds the VMware distribution bundle (.zip file) and Oracle Virtual Networking host drivers to a template.

This documentation uses VMware-ESXi-6.0.0 build-2494585-depot.zip and xsigo-6.0.0-ESX1 drivers for illustrative purposes. Follow the same procedure for other versions.

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwareDepot -DepotUrl C:\Users\Administrator\Downloads\VMware-ESXi-6.0.0-2494585-depot.zip

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwareDepot -DepotUrl C:\Users\Administrator\Desktop\ESX6.0Drivers\xsigo_6.0.0-ESX.1-1vmw.600.0.0-2494585.zip

This example imports the VMware distribution bundle (VMware-ESXi-6.0.0-2494585-depot.zip) and Oracle Virtual Networking host drivers (xsigo_6.0.0-ESX.1-1vmw.600.0.0-2494585.zip) to a template.

When you upload the ESX software depot, it creates VMware standard profiles by default. The profiles can be either cloned or created new to make a Custom-ESXISO. This procedure uses the cloned-profile installation procedure.

7. List the ESX image profiles.

PowerCLI C:\images\New PowerCLI > Get-EsxImageProfile

Name Vendor Last Modified Acceptance Level

---- ------ ------------- ----------------

ESXi-6.0.0-2494585-standard VMware, Inc. 2/6/20156:... PartnerSupported

ESXi-6.0.0-2494585-no-tools VMware, Inc. 2/6/20156:... PartnerSupported

As shown in this example, two ESX image profiles are available by default. To make the remastered ISO, you will clone the ESXi-6.0.0-2494585-standard profile.

8. Create an image profile to make the Custom-ESX-6.0.0 ISO.

PowerCLI C:\images\New PowerCLI> New-EsxImageProfile -CloneProfile ESXi-6.0.0-2494585- standard -Name "Custom-ESX-6.0.0" -Vendor VMware

 In this example, a new ESX image profile named Custom-ESX-6.0.0 is created by cloning the default ESX image profile.

9. Verify that the custom ESX image profile is present.

PowerCLI C:\images\New PowerCLI > Get-EsxImageProfile

Name Vendor Last Modified Acceptance Level

---- ------

Custom-ESX-6.0.0 VMware 2/6/20156:... PartnerSupported

ESXi-6.0.0-2494585-standard VMware, Inc. 2/6/20156:... PartnerSupported

ESXi-6.0.0-2494585-no-tools VMware, Inc. 2/6/20156:... PartnerSupported

When the custom image profile is present, you can add and remove necessary packages to make a custom ISO.

10. Remove the net-mlx4-en, net-mlx4-core, nmlx4-en, and nmlx4-core packages from the depot so that they are not included in the remastered ISO.

PowerCLI C:\images\New PowerCLI> Remove-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-mlx4-en

PowerCLI C:\images\New PowerCLI> Remove-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-mlx4-core

PowerCLI C:\images\New PowerCLI> Remove-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage nmlx4-en

PowerCLI C:\images\New PowerCLI> Remove-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage nmlx4-core

 11. Add OVN packages in the order shown.

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-ib-core

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-mlx4-core

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-ib-mad

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-ib-sa

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-ib-ipoib

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-mlx4-ib

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-ib-cm

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-xscore

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-xsvnic

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage net-xve

PowerCLI C:\images\New PowerCLI> Add-EsxSoftwarePackage -ImageProfile Custom-ESX-6.0.0 -SoftwarePackage scsi-xsvhba

 12. Export the modified image profile to the remastered ISO.

PowerCLI C:\images\New PowerCLI> Export-EsxImageProfile -ImageProfile Custom-ESX-6.0.0 -FilePath C:\Users\Administrator\Desktop\ESX6.0Drivers\Custom-6.0.-OVN.iso –ExportToIso

 13. (Optional) Export the modified image to the remastered bundle.

This step is required if your deployments use a bundle for installation.

PowerCLI C:\images\New PowerCLI> Export-EsxImageProfile -ImageProfile Custom-ESX-6.0.0 -FilePath C:\Users\Administrator\Desktop\ESX6.0Drivers\Custom-ESX-6.0.0-OVN.zip ExportToBundle

 14. Reboot the server using the remastered ISO.

 

 

 

 

 

References

http://docs.oracle.com/cd/E38500_01/pdf/E64239.pdf

Attachments
This solution has no attachment
  Copyright © 2018 Oracle, Inc.  All rights reserved.
 Feedback