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:
install
lang en_US.UTF-8
langsupport --default en_US.UTF-8
keyboard us
mouse genericwheelps/2 --device psaux
skipx
network --device eth0 --bootproto static --ip 10.6.175.101 --netmask 255.255.255.0 --gateway 10.6.175.254 --hostname esxsvr02.localdomain
rootpw --iscrypted $1$I2FyAXFF$SyoooKYopRRmQdgSv3kQp0
firewall --enabled
authconfig --enableshadow --enablemd5
timezone --utc America/New_York
bootloader --location=mbr
reboot --eject
vmaccepteula
clearpart --all --initlabel --drives=cciss/c0d0
part / --size 5120 --ondisk cciss/c0d0 --fstype ext3 --asprimary
part /boot --size 250 --ondisk cciss/c0d0 --fstype ext3 --asprimary
part swap --size 1600 --ondisk cciss/c0d0 --fstype swap --asprimary
part /var --size 4096 --ondisk cciss/c0d0 --fstype ext3
part /tmp --size 1024 --ondisk cciss/c0d0 --fstype ext3
part /opt --size 2048 --ondisk cciss/c0d0 --fstype ext3
part /home --size 1024 --ondisk cciss/c0d0 --fstype ext3
part vmcore --size 100 --ondisk cciss/c0d0 --fstype ext3
part VMFS --size 2048 --ondisk cciss/c0d0 --fstype ext3
%packages
grub
%post
install
lang en_US.UTF-8
langsupport --default en_US.UTF-8
keyboard us
mouse genericwheelps/2 --device psaux
skipx
network --device eth0 --bootproto static --ip 10.6.175.101 --netmask 255.255.255.0 --gateway 10.6.175.254 --hostname esxsvr02.localdomain
rootpw --iscrypted $1$I2FyAXFF$SyoooKYopRRmQdgSv3kQp0
firewall --enabled
authconfig --enableshadow --enablemd5
timezone --utc America/New_York
bootloader --location=mbr
reboot --eject
vmaccepteula
clearpart --all --initlabel --drives=cciss/c0d0
part / --size 5120 --ondisk cciss/c0d0 --fstype ext3 --asprimary
part /boot --size 250 --ondisk cciss/c0d0 --fstype ext3 --asprimary
part swap --size 1600 --ondisk cciss/c0d0 --fstype swap --asprimary
part /var --size 4096 --ondisk cciss/c0d0 --fstype ext3
part /tmp --size 1024 --ondisk cciss/c0d0 --fstype ext3
part /opt --size 2048 --ondisk cciss/c0d0 --fstype ext3
part /home --size 1024 --ondisk cciss/c0d0 --fstype ext3
part vmcore --size 100 --ondisk cciss/c0d0 --fstype ext3
part VMFS --size 2048 --ondisk cciss/c0d0 --fstype ext3
%packages
grub
%post
Tags:
esx,
installation,
installing,
kickstart