Hi Guys, I'm having trouble getting kickstart running properly as part of a PXE install on RHEL3. The pxe boot seems to work fine, and the installer starts correctly, but once you try to manually start a http/ftp/nfs install it refuses to find a network driver. Alt-F3 reveals *Getting kickstart file *ASSERT: no network device in chooseNetworkInterface *no network drivers for doing kickstart. *unable to bring up network *trying to mount device hda The nic in question is an intel e1000. The kickstart script looks like this: #Generated by Kickstart Configurator noprobe device scsi megaraid2 device net e1000 #System language lang en_US #Language modules to install langsupport zh_CN.GB2312 zh_TW.Big5 cs_CZ da_DK nl_NL fr_FR de_DE is_IS it_IT ja_JP.eucJP ko_KR.eucKR no_NO pt_PT ru_RU.k0I8r sl_SI es_ES sv_SE uk_UA --default=en_US #System keyboard keyboard uk #System mouse mouse --emulthree generic3ps/2 #Sytem timezone timezone Europe/London #Root password rootpw --iscrypted $1$/Uj0Wrk6$NOLJ8ShowYlV1rexMN2BO. #Reboot after installation reboot #Install Red Hat Linux instead of upgrade install #Use NFS installation Media nfs --server=10.10.158.84 --dir=/home/pxeboot/rhel3 #System bootloader configuration bootloader --location=mbr #Clear the Master Boot Record zerombr yes #Partition clearing information clearpart --all --initlabel #Disk partitioning information part / --fstype ext3 --size 1 --grow part swap --recommended part /boot --fstype ext3 --size 1024 #System authorization infomation auth --useshadow --enablemd5 #Network information network --bootproto=dhcp --device=eth0 #Firewall configuration firewall --disabled #XWindows configuration information xconfig --depth=32 --resolution=1280x1024 --defaultdesktop=GNOME #Package install information %packages --resolvedeps @ X Window System @ GNOME Desktop Environment @ Editors @ Graphical Internet @ Text-based Internet @ Server Configuration Tools @ DNS Name Server @ FTP Server @ Network Servers @ Development Tools @ Kernel Development @ Administration Tools @ System Tools And is called by a pxelinux config file containing: default rhel-3-es label rhel-3-es kernel rhel3/vmlinuz append ksdevice=eth0 ks=nfs:10.10.158.84:/home/pxeboot/rhel3/ks.cfg ip=dhcp console=tty0 console=ttys0,19200 load_ramdisk=1 initrd=rhel3/initrd.img Any help on this one would be much appreciated. Thanks