On Tue, 19 Oct 2004, flw wrote: >Now I want to use the Kickstart, so I changed the >/tftpboot/pxelinux.cfg/default >file to this: > >label install >KERNEL vmlinuz >APPEND initrd=initrd.img ks=nfs:192.168.20.100:/tftpboot/fc2/ks.cfg >IPAPPEND 1 > >I generate the ks.cfg using the GUI Kickstart configurator. > >With this configuration during startup, the client load vmlinuz and >initrd.img OK. then it goes to /sbin/loader and stops there. No NFS server? You've instructed Kickstart to fetch its config file fro "ks=nfs:192.168.20.100:/tftpboot/fc2/ks.cfg", specifying an "nfs" server (the other [network] option is http). To quickly setup NFS, try this: 1. Add a line "/tftpboot *(ro,async)" to /etc/exports 2. Start up the "portmap", "nfslock", and "nfs" services in order (e.g. "service portmap start"), if they're not already running. Cheers, Phil