Michael Cunningham wrote:
Folks, I would like to be able to setup my kickstart setup for redhat 7.2 to be as non interactive as possible. 2. I type "linux ks=nfs:137.236.77.83:/root/redhat7.2/ks.cfg" at the prompt. is there a way to get rid of this needed command? )
Yes, edit syslinux.cfg on the floppy, and put this info on the ks line. Also, change the default to ks instead of linux.
If you get the language question (and you have it defined in the ks.cfg file), then it is not able to get the ks.cfg file.
install --server 137.236.77.83 --dir /root/redhat7.2
Here is your problem. You are trying to export /root. DON'T DO THAT. Move the redhat7.2 directory to some other place (such as /home/redhat7.2, or /redhat7.2 -- e.g., `mv /root/redhat7.2 /`). Edit your /etc/exports file to export the new directory, and try it again.
Forrest --