On Fri, 2003-04-18 at 02:25, Richard Wilson wrote: > I am unable to get my system to go out to the need system for the cfg > file. I do the following changes to grub.conf > title Red Hat Linux Upgrade > root (hd0,0) > kernel /pxeboot/vmlinuz ro root=LABEL=/ > initrd /pxeboot/initrd.img > append ksdevice=eth0 load_ramdisk=1 prompt_ramdisk=0 \ > ramdisk_size=32768 network ks=http://15.8.27.142/ks.cfg With GRUB, you don't use an append line. Just add the arguments to the kernel line, like the following (no line wrap on the kernel line) title Upgrade root (hd0,0) kernel /pxeboot/vmlinuz ksdevice=eth0 ramdisk_size=32768 ks=http://15.8.27.142/ks.cfg initrd /pxeboot/initrd.img Cheers, Jeremy