Hello,<br><br>I've been trying to kickstart a install centos from a USB memory stick. Everything with that is working fine, but I seem to be having a problem with the ks.cfg file.<br><br>When I boot the install media from the usb drive, the the boot prompt I type
<br><br>linux ks=hd:/dev/uba1/ks.cfg<br><br>Then I peek at the logs and it even says <br><br>* getting kickstart file<br>* getting kickstart file from harddrive<br>* Loading ks from device on path dev/uba1/ks.cfg<br>* getFileFromBlockDevice(, dev/uba1/ks.cfg)
<br><br>But when the install script starts, it still ask me for install media location. Here's a copy of my ks.cfg too.. Permissions of the file on /dev/uba1 are 744.<br><br>Thanks<br><br><br>##<br>## sample config file for testing Kickstart
<br>## for OnLAMP.com article<br>##<br>## NOTE: Likely, you'll have to change several values<br>## here to match your hardware.<br>##<br>##<br><br>## - - install type/source - - - - - - - - - - -<br>install<br>url --url <a href="ftp://wuarchive.wustl.edu/mirrors/linux/distributions/fedora/4/i386/os/Fedora/base">
ftp://wuarchive.wustl.edu/mirrors/linux/distributions/fedora/4/i386/os/Fedora/base</a><br><br>## - - debugging - - - - - - - - - -<br>## :: uncomment the following to debug a Kickstart config file<br>## interactive<br><br>
## - - language and input support - - - - - - - -<br>## :: language used during install<br>lang en_US.UTF-8<br><br>## :: mouse used during install<br>mouse generic3ps/2<br><br>## :: runtime language and keyboard support<br>
langsupport --default en_US.UTF-8 en_US.UTF-8<br>keyboard us<br><br>## - - video card and monitor - - - - - - - - - -<br><br>xconfig --card "VMWare" --videoram 16384 --hsync 31.5-37.9 --vsync 50-70 --resolution 800x600 --depth 16
<br><br><br>## - - network configuration - - - - - - - - - -<br>network --device eth0 --bootproto dhcp<br><br><br>## - - security and authentication - - - - - - -<br><br>rootpw ***********<br><br>firewall --disabled<br><br>
authconfig --enableshadow --enablemd5<br><br>## - - time zone - - - - - - - - - -<br>timezone America/Chicago<br><br>## - - boot loader- - - - - - - - - -<br>bootloader --location=mbr<br><br>## - - disk setup - - - - - - - - - -
<br><br>## :: remove old partitions<br><br>clearpart --all --initlabel<br><br>## :: choose between hard partitioning and LVM,<br>## :: then uncomment the proper set of lines<br><br>## :: hard partitioning<br># part /boot --fstype ext3 --size=100 --ondisk=sda
<br># part / --fstype ext3 --size=1024 --grow --ondisk=sda<br># part swap --size=128 --grow --size=256 --ondisk=sda<br><br>## :: LVM<br># part /boot --fstype ext3 --size=100 --asprimary --ondisk=sda<br># part pv.00 --size=1 --grow --asprimary --ondisk=sda
<br>#<br># volgroup vgroot pv.00<br># logvol / --name=root.fs --vgname=vgroot --size=1024<br># logvol swap --name=swap.vol --vgname=vgroot --size=256<br><br><br>## - - package selection - - - - - - - - - -<br>## :: reboot the machine when done
<br>## :: (it's up to you to remove the boot media)<br><br>reboot<br><br>## - - package selection - - - - - - - - - -<br>## :: this is a barebones install, just for testing Kickstart<br>%packages<br>@ dialup<br>kernel<br>
grub<br>e2fsprogs<br><br>## - - - - - - - - - - - - - - - - - - - - -<br><br>