<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>VMware Communities: Message List - ESX kickstart installation is seeing device sda, sdb, sdc....</title>
    <link>http://communities.vmware.com/community/vmtn/vi/esx3.5?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Thu, 04 Jun 2009 18:58:57 GMT</pubDate>
    <generator>Clearspace 1.10.12 (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2009-06-04T18:58:57Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Re: ESX kickstart installation is seeing device sda, sdb, sdc....</title>
      <link>http://communities.vmware.com/message/1273006?tstart=0#1273006</link>
      <description>&lt;br /&gt;
Yes it works well.  I am still paranoid and disable the fiber switch ports anyways.  Defense in depths &lt;img class="jive-emoticon" border="0" src="http://communities.vmware.com/images/emoticons/happy.gif" alt=":)" /&gt;&lt;br /&gt;
&lt;p /&gt;
 Nothing worse than mashing an existing lun or wiping one that has running vm's on it.</description>
      <pubDate>Thu, 04 Jun 2009 18:58:57 GMT</pubDate>
      <author>timmp</author>
      <guid>http://communities.vmware.com/message/1273006?tstart=0#1273006</guid>
      <dc:date>2009-06-04T18:58:57Z</dc:date>
      <clearspace:dateToText>5 months, 3 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>Re: ESX kickstart installation is seeing device sda, sdb, sdc....</title>
      <link>http://communities.vmware.com/message/1272913?tstart=0#1272913</link>
      <description>Thats a neat trick - never thought of that one.&lt;br /&gt;
&lt;br /&gt;
Will add that to my kickstart so I dont have to shut/noshut my fiber switch ports during install.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
&lt;br /&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--Matt&lt;br /&gt;
VCP, vExpert, Unix Geek</description>
      <pubDate>Thu, 04 Jun 2009 18:00:23 GMT</pubDate>
      <author>mcowger</author>
      <guid>http://communities.vmware.com/message/1272913?tstart=0#1272913</guid>
      <dc:date>2009-06-04T18:00:23Z</dc:date>
      <clearspace:dateToText>5 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Re: ESX kickstart installation is seeing device sda, sdb, sdc....</title>
      <link>http://communities.vmware.com/message/1272854?tstart=0#1272854</link>
      <description>So to add to the previous thread, your kickstart file would have something like this:&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;ol&gt;
&lt;li&gt;VMWare License options&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
vmaccepteula&lt;br /&gt;
&lt;p /&gt;
%vmlicense_text&lt;br /&gt;
&lt;p /&gt;
%packages&lt;br /&gt;
&lt;p /&gt;
@base&lt;br /&gt;
&lt;p /&gt;
%pre&lt;br /&gt;
&lt;p /&gt;
#!/bin/sh&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;==============================================================&lt;/li&gt;
&lt;/ol&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;ol&gt;
&lt;li&gt;This will remove the loaded HBA modules from the kernel&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
remove_qla() {&lt;br /&gt;
&lt;p /&gt;
for i in $(lsmod | grep qla | awk '{print $1'}); do&lt;br /&gt;
&lt;p /&gt;
echo Will remove: $i &amp;gt;&amp;gt; /dev/tty1&lt;br /&gt;
&lt;p /&gt;
rmmod $i&lt;br /&gt;
&lt;p /&gt;
sleep 1&lt;br /&gt;
&lt;p /&gt;
done&lt;br /&gt;
&lt;p /&gt;
}&lt;br /&gt;
&lt;p /&gt;
remove_lpfc() {&lt;br /&gt;
&lt;p /&gt;
for i in $(lsmod | grep lpfc | awk '{print $1'}); do&lt;br /&gt;
&lt;p /&gt;
echo Will remove: $i &amp;gt;&amp;gt; /dev/tty1&lt;br /&gt;
&lt;p /&gt;
rmmod $i&lt;br /&gt;
&lt;p /&gt;
sleep 1&lt;br /&gt;
&lt;p /&gt;
done&lt;br /&gt;
&lt;p /&gt;
}&lt;br /&gt;
&lt;p /&gt;
remove_qla&lt;br /&gt;
&lt;p /&gt;
sleep 2&lt;br /&gt;
&lt;p /&gt;
remove_qla&lt;br /&gt;
&lt;p /&gt;
remove_lpfc&lt;br /&gt;
&lt;p /&gt;
%post&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
The above should remove the Emulex and Qlogic HBA's prior to installation.</description>
      <pubDate>Thu, 04 Jun 2009 17:26:04 GMT</pubDate>
      <author>timmp</author>
      <guid>http://communities.vmware.com/message/1272854?tstart=0#1272854</guid>
      <dc:date>2009-06-04T17:26:04Z</dc:date>
      <clearspace:dateToText>5 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
    </item>
    <item>
      <title>Re: ESX kickstart installation is seeing device sda, sdb, sdc....</title>
      <link>http://communities.vmware.com/message/1256087?tstart=0#1256087</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
Add a %pre section to REMOVE the drivers for the HBA from the installer. This is the problem. You should either disconnect the cables, depresent the LUNs, or remove the drivers. On the remove timing is most important.&lt;br /&gt;
&lt;br /&gt;
&lt;br&gt;Best regards, Edward L. Haletky VMware Communities User Moderator, VMware vExpert 2009, &lt;a class="jive-link-external" href="http://www.dabcc.com/channel.aspx?id=279"&gt;DABCC Analyst&lt;/a&gt;&lt;br&gt;Now Available on Rough-Cuts: &lt;a class="jive-link-external" href="http://www.astroarch.com/wiki/index.php/VMware_Virtual_Infrastructure_Security"&gt;'VMware vSphere(TM) and Virtual Infrastructure Security: Securing ESX and the Virtual Environment'&lt;/a&gt;&lt;br&gt;Also available &lt;a class="jive-link-external" href="http://www.astroarch.com/wiki/index.php/VMWare_ESX_Server_in_the_Enterprise"&gt;'VMWare ESX Server in the Enterprise'&lt;/a&gt;&lt;br&gt;&lt;a class="jive-link-external" href="http://www.astroarch.com/wiki/index.php/Blog_Roll"&gt;SearchVMware Pro&lt;/a&gt;|&lt;a class="jive-link-external" href="http://www.astroarch.com/blog"&gt;Blue Gears&lt;/a&gt;|&lt;a class="jive-link-external" href="http://www.astroarch.com/wiki/index.php/Top_Virtualization_Security_Links"&gt;Top Virtualization Security Links&lt;/a&gt;|&lt;a class="jive-link-external" href="http://www.astroarch.com/wiki/index.php/Virtualization_Security_Round_Table_Podcast"&gt;Virtualization Security Round Table Podcast&lt;/a&gt;</description>
      <pubDate>Tue, 19 May 2009 13:48:11 GMT</pubDate>
      <author>Texiwill</author>
      <guid>http://communities.vmware.com/message/1256087?tstart=0#1256087</guid>
      <dc:date>2009-05-19T13:48:11Z</dc:date>
      <clearspace:dateToText>6 months, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>Re: ESX kickstart installation is seeing device sda, sdb, sdc....</title>
      <link>http://communities.vmware.com/message/1255295?tstart=0#1255295</link>
      <description>Hiya,&lt;br /&gt;
&lt;br /&gt;
You only need to remove the drivers from the ISO - you don't need to add them back in later - this is because the drivers are loaded specifically for the install - separate drivers are loaded by ESX itself, once it is installed.&lt;br /&gt;
&lt;br /&gt;
I wrote a whitepaper on it ages ago:&lt;br /&gt;
&lt;br /&gt;
(It was hosted on Xtraviert's site - but it doesn't seem to be there any more - pm me with your email address and I'll send you a copy...)&lt;br /&gt;
&lt;p /&gt;
But even better easier just script it all - only takes 5 mins or so to amend the ISO&lt;br /&gt;
&lt;br /&gt;
&lt;a class="jive-link-external" href="http://www.jume.nl/index.php?option=com_content&amp;#38;task=view&amp;#38;id=34&amp;#38;Itemid=5"&gt;http://www.jume.nl/index.php?option=com_content&amp;#38;task=view&amp;#38;id=34&amp;#38;Itemid=5&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Dinny</description>
      <pubDate>Mon, 18 May 2009 17:44:02 GMT</pubDate>
      <author>dinny</author>
      <guid>http://communities.vmware.com/message/1255295?tstart=0#1255295</guid>
      <dc:date>2009-05-18T17:44:02Z</dc:date>
      <clearspace:dateToText>6 months, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
    </item>
    <item>
      <title>Re: ESX kickstart installation is seeing device sda, sdb, sdc....</title>
      <link>http://communities.vmware.com/message/1252391?tstart=0#1252391</link>
      <description>Two suggestions.&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;
One is to remove the drivers for your HBA cards from your ISO and have the ks add the drivers in the post portion of the script&lt;br /&gt;
&lt;p /&gt;
Two unpresent the LUNs from the host before you run the install&lt;br /&gt;
&lt;p /&gt;
Here is what ours look like for the partitioning. Notice that the file type for the VMFS is NOT ext3&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Langauge Support&lt;/li&gt;
&lt;/ol&gt;
langsupport --default en_US&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Keyboard&lt;/li&gt;
&lt;/ol&gt;
keyboard us&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Mouse&lt;/li&gt;
&lt;/ol&gt;
mouse none&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Reboot after install ?&lt;/li&gt;
&lt;/ol&gt;
reboot&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Firewall settings&lt;/li&gt;
&lt;/ol&gt;
firewall --disabled&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Clear Partitions&lt;/li&gt;
&lt;/ol&gt;
clearpart --all --initlabel --drives=cciss/c0d0&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Partitioning&lt;/li&gt;
&lt;/ol&gt;
part /boot --fstype ext3 --size 250 --ondisk cciss/c0d0&lt;br /&gt;
part / --fstype ext3 --size 5120 --ondisk cciss/c0d0&lt;br /&gt;
part swap --size 2048 --ondisk cciss/c0d0&lt;br /&gt;
part None --fstype vmfs3 --size 10000 --grow --ondisk cciss/c0d0&lt;br /&gt;
part None --fstype vmkcore --size 110 --ondisk cciss/c0d0&lt;br /&gt;
part /var --fstype ext3 --size 4096 --ondisk cciss/c0d0&lt;br /&gt;
part /tmp --fstype ext3 --size 5120 --ondisk cciss/c0d0&lt;br /&gt;
part /home --fstype ext3 --size 1024 --ondisk cciss/c0d0&lt;br /&gt;
part /opt --fstype ext3 --size 3072 --ondisk cciss/c0d0&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;ol&gt;
&lt;li&gt;VMware Specific Commands&lt;/li&gt;
&lt;/ol&gt;
vmaccepteula&lt;br /&gt;
&lt;br /&gt;
%packages&lt;br /&gt;
@base&lt;br /&gt;
@ everything&lt;br /&gt;
&lt;br /&gt;
%post&lt;br /&gt;
#################&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Configure DNS #&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
#################&lt;br /&gt;
&lt;p /&gt;
Wow all of the # turned into 1. when I pased it in.&lt;br /&gt;
&lt;br /&gt;
Message was edited by: Chamon</description>
      <pubDate>Thu, 14 May 2009 20:30:35 GMT</pubDate>
      <author>Chamon</author>
      <guid>http://communities.vmware.com/message/1252391?tstart=0#1252391</guid>
      <dc:date>2009-05-14T20:30:35Z</dc:date>
      <clearspace:dateToText>6 months, 2 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>ESX kickstart installation is seeing device sda, sdb, sdc....</title>
      <link>http://communities.vmware.com/message/1252321?tstart=0#1252321</link>
      <description>I am installing ESX via DVD, and HTTP kickstart to my blade server.  During the install the installer prompts me: "Partition table on device sda was unreadable…", and Partition table on device sdb was unreadable…", and "Partition table on device sdc was unreadable…" etc. for what I believe to be all of my SAN drives presented to the blade.  How do get the installer to skip these drives and to only format and install ESX onto the local drive (cciss/c0d0)?  Here is the excerpt from my kickstart file that I am using:&lt;br /&gt;
&lt;br /&gt;
install&lt;br /&gt;
lang en_US.UTF-8&lt;br /&gt;
langsupport --default en_US.UTF-8&lt;br /&gt;
keyboard us&lt;br /&gt;
mouse genericwheelps/2 --device psaux&lt;br /&gt;
skipx&lt;br /&gt;
network --device eth0 --bootproto static --ip 10.6.175.101 --netmask 255.255.255.0 --gateway 10.6.175.254 --hostname esxsvr02.localdomain&lt;br /&gt;
rootpw --iscrypted $1$I2FyAXFF$SyoooKYopRRmQdgSv3kQp0&lt;br /&gt;
firewall --enabled&lt;br /&gt;
authconfig --enableshadow --enablemd5&lt;br /&gt;
timezone --utc America/New_York&lt;br /&gt;
bootloader --location=mbr&lt;br /&gt;
reboot --eject&lt;br /&gt;
vmaccepteula&lt;br /&gt;
&lt;br /&gt;
clearpart --all --initlabel --drives=cciss/c0d0&lt;br /&gt;
&lt;br /&gt;
part /	--size 5120	--ondisk cciss/c0d0	--fstype ext3	--asprimary&lt;br /&gt;
part /boot	--size 250	--ondisk cciss/c0d0	--fstype ext3	--asprimary&lt;br /&gt;
part swap	--size 1600	--ondisk cciss/c0d0	--fstype swap	--asprimary&lt;br /&gt;
part /var	--size 4096	--ondisk cciss/c0d0	--fstype ext3&lt;br /&gt;
part /tmp	--size 1024	--ondisk cciss/c0d0	--fstype ext3&lt;br /&gt;
part /opt	--size 2048	--ondisk cciss/c0d0	--fstype ext3&lt;br /&gt;
part /home	--size 1024	--ondisk cciss/c0d0	--fstype ext3&lt;br /&gt;
part vmcore	--size 100	--ondisk cciss/c0d0	--fstype ext3&lt;br /&gt;
part VMFS	--size 2048	--ondisk cciss/c0d0	--fstype ext3&lt;br /&gt;
&lt;br /&gt;
%packages&lt;br /&gt;
grub&lt;br /&gt;
&lt;br /&gt;
%post</description>
      <pubDate>Thu, 14 May 2009 19:27:56 GMT</pubDate>
      <author>Tomahawk!</author>
      <guid>http://communities.vmware.com/message/1252321?tstart=0#1252321</guid>
      <dc:date>2009-05-14T19:27:56Z</dc:date>
      <clearspace:dateToText>6 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
    </item>
  </channel>
</rss>

