Hello,<br><br>I'm trying to install Fedora Core 5 using a boot cd (boot.iso) and a kickstart<br>floppy stored in a floppy drive (ks.cfg). I can do a manual nfs install, but I'd like<br>to learn to implement kickstart.<br><br>
I've done some browsing but found no references to my particular problem.<br><br>This is what I've done so far:<br><br>[1] created a boot cd with boot.iso.<br><br>[2] created a ks.cfg with kickstart configurator and edited the disk partition section.
<br><br>[3] issued this command to boot using ks.cfg from floppy:<br>    linux ks=floppy:/ks.cfg<br>    <br>    The boot proceeds normally, but the install halts with the following error:<br>        "The following error was found while parsing your kickstart configuration"
<br>         The following problem occurred in line 31 of the kickstart file:<br>         mount point required for partition"<br><br>    line 31 refers to the line "part /boot --fstype ext3 size=200"<br><br>
After having read quite a bit about the subject, I cannot see where the problem might be.<br>Any ideas what's wrong?<br>Your help will be appreciated. Thanks in advanced.<br><br>This is my ks.cfg:<br>==========================================================
<br># Kickstart file automatically generated by anaconda.<br><br>install<br><br>nfs --server=<a href="http://1.2.3.4">1.2.3.4</a> --dir=/stor/DOWNLOAD/FD5<br><br>lang en_US.UTF-8<br><br>keyboard us<br><br>xconfig --driver "nv" --videoram 65536 --resolution 800x600 --depth 16 --startxonboot 
<br><br>monitor --hsync 30-130 --vsync 48-170<br><br>network --device eth0 --bootproto static --ip <a href="http://10.2.3.4">10.2.3.4</a> --netmask <a href="http://255.255.255.0">255.255.255.0</a> \<br>--gateway <a href="http://1.2.3.4">
1.2.3.4</a> --nameserver <a href="http://10.2.3.4">10.2.3.4</a>,<a href="http://1.2.3.4">1.2.3.4</a> --hostname myhostname<br><br>rootpw --iscrypted $1$eL3D8/Eh$Vweas*(&klwvopbTg5.wjyKR6wqN/<br><br>firewall --enabled --port=22:tcp
<br><br>authconfig --enableshadow --enablemd5<br><br>selinux --enforcing<br><br>timezone America/Los_Angeles<br><br>zerombr yes<br>clearpart --all<br>bootloader --location=mbr --driveorder=hda --append="rhgb quiet"
<br><br>part /boot --fstype ext3 size=200<br>part / --fstype ext3 size=200<br>part swap --noformat size=500<br>part /usr --fstype ext3 --size=3500<br>part /home --fstype ext3 --size=3000<br>part /var --fstype ext3 --size=1000
<br>part /usr/local --fstype ext3 --size=500<br>part /tmp --fstype ext3 --size=150<br>part /scratch --fstype ext3 --size=100 --grow<br><br>%packages --resolvedeps<br>@development-libs<br>@system-tools<br>@x-software-development
<br><br>==============================================================<br><br>~Aldo Foot.<br>