<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Scripted installation not taking parameters? in vSphere Upgrade &amp; Install Discussions</title>
    <link>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770581#M20457</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 2px; font-size: 14px; font-family: proxima-nova, Arial, sans-serif; color: #666666;"&gt;After talking to VMware support, I realized that I had to update the esxcli_default.cfg, which now looks like:&lt;/P&gt;&lt;P style="margin: 2px; font-size: 14px; font-family: proxima-nova, Arial, sans-serif; color: #666666;"&gt;&lt;/P&gt;&lt;P&gt;# Accept the VMware End User License Agreement&lt;/P&gt;&lt;P&gt;vmaccepteula&lt;/P&gt;&lt;P&gt;# Set the root password for the DCUI and Tech Support Mode&lt;/P&gt;&lt;P&gt;rootpw password&lt;/P&gt;&lt;P&gt;# Choose the first discovered disk to install onto&lt;/P&gt;&lt;P&gt;# The installation media is in the CD-ROM drive&lt;/P&gt;&lt;P&gt;installorupgrade --firstdisk=usb --overwritevmfs&lt;/P&gt;&lt;P&gt;# Set the network to DHCP on teh first network adapater&lt;/P&gt;&lt;P&gt;network --bootproto=dhcp --device=vmnic0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;paranoid&lt;/P&gt;&lt;P&gt;# A sample post-install script&lt;/P&gt;&lt;P&gt;%post --interpreter=python --ignorefailure=true&lt;/P&gt;&lt;P&gt;import time&lt;/P&gt;&lt;P&gt;stampFile = file('/finished.stamp', mode='w'&lt;/P&gt;&lt;P&gt;stampFile.write( time.asctime() )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#reboot when done&lt;/P&gt;&lt;P&gt;reboot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried doing another install, and after hitting shift+o at boot and specifying the location of ks.cfg file, it went through then install, but I got an error message "User-supplied %post script failed. (Error code 256)", and there was no /finished.stamp file after it booted up.&amp;nbsp; I also checked in /var/log/esxi_install.log, and didn't find any error after the parsing of the arguments that showed any sort of error.&amp;nbsp; Any thoughts on why that failed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, while I was able to get further on this, I still had to interrupt with shift+o; it wasn't very automated.&amp;nbsp; In looking at the VMware documentation, I need to use the mboot.c32 from the installation ISO, but when I try to install after that change, I get an error ""failed to load com32 file mboot.c32".&amp;nbsp; I am using syslinux 6.0.3.&amp;nbsp; Any thoughts on why I'm getting this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, any thoughts on issue #2?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jun 2015 01:12:50 GMT</pubDate>
    <dc:creator>burvil</dc:creator>
    <dc:date>2015-06-10T01:12:50Z</dc:date>
    <item>
      <title>Scripted installation not taking parameters?</title>
      <link>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770580#M20456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;UPDATED after fixing problem --&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a kickstart installation that works fine for our RHEL kickstart installations, and I'm trying to get fully working for ESXi installs.&amp;nbsp; I have a working DHCP and TFTP service that works properly, and the images are served out via HTTP.&amp;nbsp; I have PXE boot menu where I choose what configuration and OS I want, where for ESXi 6.0, I have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LABEL ESXi 6.0 (VSAN - VMware ISO)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; KERNEL /vsan/6.0_vmw/mboot.c32&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND -c /vsan/6.0_vmw/boot.cfg&lt;/P&gt;&lt;P&gt;MENU LABEL ESXi 6 install (VSAN)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where VMware-Esxi-6.0.0.iso is the ISO I downloaded from the Dell site, that has the Dell storage drivers.&amp;nbsp; The esxi_default.cfg is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Accept the VMware End User License Agreement&lt;/P&gt;&lt;P&gt;vmaccepteula&lt;/P&gt;&lt;P&gt;# Set the root password for the DCUI and Tech Support Mode&lt;/P&gt;&lt;P&gt;rootpw password-is-here&lt;/P&gt;&lt;P&gt;# Choose the first discovered disk to install onto&lt;/P&gt;&lt;P&gt;clearpart --alldrives --overwritevmfs&lt;/P&gt;&lt;P&gt;# The installation media is in the CD-ROM drive&lt;/P&gt;&lt;P&gt;install --firstdisk=usb --overwritevmfs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Changes (i.e. prompting user) will occur after modules loaded, but before installation starts.&lt;/P&gt;&lt;P&gt;%pre --interpreter=busybox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Redirects the output to /dev/ttyl and changes to tty1 virtual console.&lt;/P&gt;&lt;P&gt;exec &amp;lt; /dev/tty1 &amp;gt; /dev/tty1 2&amp;gt;&amp;amp;1&lt;/P&gt;&lt;P&gt;chvt 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I put this together based on the Vsphere install doc at &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://pubs.vmware.com/vsphere-60/index.jsp#com.vmware.vsphere.install.doc/GUID-870A07BC-F8B4-47AF-9476-D542BA53F1F5.html"&gt;http://pubs.vmware.com/vsphere-60/index.jsp#com.vmware.vsphere.install.doc/GUID-870A07BC-F8B4-47AF-9476-D542BA53F1F5.html&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; Note that I put firstdisk=usb because I want to install on the SD card. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;======================================================================================================&lt;/P&gt;&lt;P&gt;ISSUE #1:&lt;/P&gt;&lt;P&gt;I have tried kickstarting (i.e. rebooting the server, so there's no caching) changing the line in the PXE menu mentioned earlier:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1. append iso initrd=VMware-Esxi-6.0.0.iso raw ks=&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://10.26.113.10/ks/vmware/esxi_default.cfg"&gt;http://10.26.113.10/ks/vmware/esxi_default.cfg&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. append initrd=VMware-Esxi-6.0.0.iso raw ks=&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://10.26.113.10/ks/vmware/esxi_default.cfg"&gt;http://10.26.113.10/ks/vmware/esxi_default.cfg&lt;/A&gt;&lt;/P&gt;&lt;P&gt;3. append iso initrd=VMware-Esxi-6.0.0.iso raw&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;4. ks=&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://10.26.113.10/ks/vmware/esxi_default.cfg"&gt;http://10.26.113.10/ks/vmware/esxi_default.cfg&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of these,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#4 doesn't work (got an error that I didn't supply a disk image)&lt;/P&gt;&lt;P&gt;#1, 2, 3 all seem to result in the same thing, i.e. I get "Welcome to the VMware ESXi 6.0.0 Installation" screen, and get prompted to accept the EULA, etc., i.e. that the parameters above aren't working, and are getting ignored. Any thoughts as to why?&lt;/P&gt;&lt;P&gt;----------------------&lt;/P&gt;&lt;P&gt;UPDATE: Per my update above, this wasn't needed.&amp;nbsp; However, I did need to specify the following in the boot.cfg for the ESXi files.&amp;nbsp; Specifically, I had to copy the ESXi files from the ISO, then modify boot.cfg to:&amp;nbsp; a) modify the path of the files, since I have a vsan directory, b) append the ks= parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kernel=/vsan/6.0_vmw/tboot.b00&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;kernelopt=runweasel ks=&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://10.26.113.10/ks/vmware/esxi_default.cfg" rel="nofollow"&gt;http://10.26.113.10/ks/vmware/esxi_default.cfg&lt;/A&gt;&lt;/P&gt;&lt;P&gt;build=&lt;/P&gt;&lt;P&gt;modules=/vsan/6.0_vmw/b.b00 --- /vsan/6.0_vmw/jumpstrt.gz --- /vsan/6.0_vmw/useropts.gz --- /vsan/6.0_vmw/k.b00 --- /vsan/6.0_vmw/chardevs.b00 --- /vsan/6.0_vmw/a.b00 --- &amp;lt;snip&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is part of PXE chaining required, since ESXi requires a different version of pxelinux; I had to install a separate instance of pxelinux, and have a menu choice in my original pxelinux install to redirect to the new pxelinux instance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;======================================================================================================&lt;/P&gt;&lt;P&gt;ISSUE #2:&lt;/P&gt;&lt;P&gt;I'd like to use a script I have now that, as part of the %post installation for RHEL installs, the kickstart process will query a URL, which will cause the user to be prompted for a hostname, and the script at the URL returns the netmask, gateway, etc., and fills in the appropriate values to configure the network on the new server.&amp;nbsp; I'd like to do the same for ESXi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Is that possible with either the busybox of python shell?&amp;nbsp; I think they're pretty barebones install; not sure if it has full functionality.&lt;/P&gt;&lt;P&gt;- Would this be possible in the %post section of the .cfg file, or would I have to put it in %firstboot section?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------&lt;/P&gt;&lt;P&gt;UPDATE:&amp;nbsp; I got this to work per &lt;A href="http://www.virtuallyghetto.com/2015/10/how-to-prompt-for-user-input-during-an-interactive-or-scripted-install-of-esxi.html" title="http://www.virtuallyghetto.com/2015/10/how-to-prompt-for-user-input-during-an-interactive-or-scripted-install-of-esxi.html"&gt; http://www.virtuallyghetto.com/2015/10/how-to-prompt-for-user-input-during-an-interactive-or-scripted-install-of-esxi.ht…&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jun 2015 00:42:14 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770580#M20456</guid>
      <dc:creator>burvil</dc:creator>
      <dc:date>2015-06-06T00:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Scripted installation not taking parameters?</title>
      <link>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770581#M20457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin: 2px; font-size: 14px; font-family: proxima-nova, Arial, sans-serif; color: #666666;"&gt;After talking to VMware support, I realized that I had to update the esxcli_default.cfg, which now looks like:&lt;/P&gt;&lt;P style="margin: 2px; font-size: 14px; font-family: proxima-nova, Arial, sans-serif; color: #666666;"&gt;&lt;/P&gt;&lt;P&gt;# Accept the VMware End User License Agreement&lt;/P&gt;&lt;P&gt;vmaccepteula&lt;/P&gt;&lt;P&gt;# Set the root password for the DCUI and Tech Support Mode&lt;/P&gt;&lt;P&gt;rootpw password&lt;/P&gt;&lt;P&gt;# Choose the first discovered disk to install onto&lt;/P&gt;&lt;P&gt;# The installation media is in the CD-ROM drive&lt;/P&gt;&lt;P&gt;installorupgrade --firstdisk=usb --overwritevmfs&lt;/P&gt;&lt;P&gt;# Set the network to DHCP on teh first network adapater&lt;/P&gt;&lt;P&gt;network --bootproto=dhcp --device=vmnic0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;paranoid&lt;/P&gt;&lt;P&gt;# A sample post-install script&lt;/P&gt;&lt;P&gt;%post --interpreter=python --ignorefailure=true&lt;/P&gt;&lt;P&gt;import time&lt;/P&gt;&lt;P&gt;stampFile = file('/finished.stamp', mode='w'&lt;/P&gt;&lt;P&gt;stampFile.write( time.asctime() )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#reboot when done&lt;/P&gt;&lt;P&gt;reboot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried doing another install, and after hitting shift+o at boot and specifying the location of ks.cfg file, it went through then install, but I got an error message "User-supplied %post script failed. (Error code 256)", and there was no /finished.stamp file after it booted up.&amp;nbsp; I also checked in /var/log/esxi_install.log, and didn't find any error after the parsing of the arguments that showed any sort of error.&amp;nbsp; Any thoughts on why that failed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, while I was able to get further on this, I still had to interrupt with shift+o; it wasn't very automated.&amp;nbsp; In looking at the VMware documentation, I need to use the mboot.c32 from the installation ISO, but when I try to install after that change, I get an error ""failed to load com32 file mboot.c32".&amp;nbsp; I am using syslinux 6.0.3.&amp;nbsp; Any thoughts on why I'm getting this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, any thoughts on issue #2?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 01:12:50 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770581#M20457</guid>
      <dc:creator>burvil</dc:creator>
      <dc:date>2015-06-10T01:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Scripted installation not taking parameters?</title>
      <link>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770582#M20458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;I understand this may be due to our using syslinux 6.0.3 (latest version), and the com boot files there changed between versions 3 and 5.&amp;nbsp; Since we upgraded to the latest version to fix bugs, we can't go back to 3.08.&amp;nbsp; We may need to do gPXE chaining, which I’m looking into.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;1. Does anybody know if ESXi 6.0 is based on syslinux 3.08?&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;2. What are your current scripted install (kickstart) servers running for the version of syslinux?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 22:06:13 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770582#M20458</guid>
      <dc:creator>burvil</dc:creator>
      <dc:date>2015-07-17T22:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Scripted installation not taking parameters?</title>
      <link>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770583#M20459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;Making some progress...&amp;nbsp; I am trying to replicate what’s in the Vsphere documentation center, at &lt;A href="http://pubs.vmware.com/vsphere-60/topic/com.vmware.ICbase/PDF/vsphere-esxi-vcenter-server-60-installation-setup-guide.pdf"&gt;http://pubs.vmware.com/vsphere-60/topic/com.vmware.ICbase/PDF/vsphere-esxi-vcenter-server-60-installation-setup-guide.pdf&lt;/A&gt;.&amp;nbsp;&amp;nbsp; Currently, I am further than I was before, where I have installed syslinux 3.86, since ESXi is compiled with 3.86.&amp;nbsp; I have put in the following, as it’s what in page 50 of the link above:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;DEFAULT menu.c32&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;MENU TITLE ESXi 6 Boot Menu - per Vsphere 6 documentation center&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;NOHALT 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;PROMPT 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;TIMEOUT 10&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;LABEL install&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; KERNEL mboot.c32&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND -c boot.cfg&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;MENU LABEL ESXi 6 ^Installer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;LABEL hddboot&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;&amp;nbsp;&amp;nbsp; LOCALBOOT 0x80&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;&amp;nbsp;&amp;nbsp; MENU LABEL ^Boot from local disk&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;And the system will try to boot, and say:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;Loading -c... failed!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;No files found!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;boot:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;However, I have the boot.cfg in the locations I could think could be right:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;[root@cm-di-msdc02 pxelinux.cfg]# pwd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;/var/lib/tftpboot/pxelinux.cfg&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;[root@cm-di-msdc02 pxelinux.cfg]# diff ../boot.cfg boot.cfg&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;[root@cm-di-msdc02 pxelinux.cfg]# ls -l ../boot.cfg boot.cfg&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;-r-xr-xr-x 1 root root 1819 Aug 13 21:22 ../boot.cfg&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;-r-xr-xr-x 1 root root 1819 Aug 13 21:22 boot.cfg&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.5pt; font-family: 'Helvetica','sans-serif'; color: #333333; background: white;"&gt;Is there a way to test at the boot: prompt?&amp;nbsp;&amp;nbsp; How can I get past this error?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2015 23:19:22 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770583#M20459</guid>
      <dc:creator>burvil</dc:creator>
      <dc:date>2015-08-28T23:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Scripted installation not taking parameters?</title>
      <link>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770584#M20460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like you are inadvertently using the mboot.c32 plugin that comes with syslinux/pxelinux. That's the wrong plugin; you need the mboot.c32 that comes with ESXi. Get it from the latest version of ESXi that you're trying to boot -- newer versions of mboot are backward compatible with older versions of ESXi. You will find our mboot.c32 in the root directory of the ESXi install CD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason our documentation says to use syslinux 3.86 is that ESXi's mboot.c32 plugin is built against the syslinux v3/v4 plugin API and specifically tested against 3.86. The newer plugin API from syslinux v5 or v6 is incompatible with plugins built against the older API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to get someone to work on porting our mboot to the newer syslinux API to make it easier for customers like you who are PXE booting multiple different OSes and want to use the latest syslinux. But no promises when/if that will happen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please comment in this thread if you have success with the correct mboot.c32?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 04:08:17 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770584#M20460</guid>
      <dc:creator>TimMann</dc:creator>
      <dc:date>2015-10-01T04:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Scripted installation not taking parameters?</title>
      <link>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770585#M20461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know this post is quite old, but this is exactly the frustration I'm having at the moment.&amp;nbsp; My entire PXE environment is based on 6.04 (booting w/ lpxelinux) to support a wide variety of needs.&amp;nbsp; Being unable to use the mboot.c32 from 3.8.6 against it is frustrting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has any progress been made on an mboot.c32 file compiled against the newer code base?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Apr 2017 22:18:11 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770585#M20461</guid>
      <dc:creator>rspoto</dc:creator>
      <dc:date>2017-04-19T22:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Scripted installation not taking parameters?</title>
      <link>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770586#M20462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See my updated description for this post.&amp;nbsp; ESXi requires an older version of pxelinux, I think probably because they forked off of the Redhat, i.e. in ESXi 4, it was a lot more compatible with Linux, and I think was based on RHEL.&amp;nbsp; Not anymore.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got around this by having a menu choice in my non-ESXi PXE install point to the directory for the ESXi install, i.e. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LABEL Vmware installs and upgrade&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MENU LABEL ^VMware ESXi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COM32 pxechn.c32&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND /vmware/pxelinux.0 -p /vmware/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TEXT HELP&lt;/P&gt;&lt;P&gt;All vmware install/upgrade&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDTEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wouldn't know about compiling against the new code base.&amp;nbsp; I looked into that, and it seems I'd run into too many dependencies to be worth my time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Apr 2017 02:20:41 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770586#M20462</guid>
      <dc:creator>burvil</dc:creator>
      <dc:date>2017-04-22T02:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Scripted installation not taking parameters?</title>
      <link>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770587#M20463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This thread helped me more than all of the documentation, errors, and blog posts I have read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using pxechn.c32, you can link to a separate set of syslinux 3.86 files to deploy multiple versions or kickstarts of ESXi from syslinux 6.03.&amp;nbsp; This saved me from creating a separate server with 3.86.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jul 2017 21:04:29 GMT</pubDate>
      <guid>https://communities.vmware.com/t5/vSphere-Upgrade-Install/Scripted-installation-not-taking-parameters/m-p/1770587#M20463</guid>
      <dc:creator>freeandopensour</dc:creator>
      <dc:date>2017-07-10T21:04:29Z</dc:date>
    </item>
  </channel>
</rss>

