# Install a fresh system rather than upgrade an existing system install # Perform the kickstart installation in text mode #text graphical # Install from an installation tree on a remote server via FTP or HTTP cdrom #nfs --server=10.66.65.114 --dir=/misc #updates http://10.66.65.114/install/updates.img #updates http://jlaska.fedorapeople.org/updates/620900.img #url --url http://download.englab.nay.redhat.com/pub/fedora/linux/development/14/x86_64/os #url --url http://download.englab.nay.redhat.com/pub/fedora/linux/releases/13/Fedora/x86_64/os #nfs --server=nfs.englab.nay.redhat.com --dir=/pub/fedora/linux/development/14/x86_64/os # Sets the language to use during installation lang en_US.UTF-8 # Sets the language(s) to install on the system #langsupport en_US # Sets system keyboard type keyboard us # auto mouse #mouse # Sets up the authentication options for the system authconfig --enableshadow --enablemd5 # Sets the system time zone timezone America/New_York # Configures network information for the system #network --device eth0 --bootproto bootp # doesn't seem to work #network --device eth0 --mtu=1500 --bootproto dhcp #network --device eth0 --bootproto static --ip=192.168.0.51 --netmask=255.255.255.0 -\ #-gateway=192.168.0.1 --nameserver=192.168.0.1 # Sets the system's root password to "whatever" rootpw `````` # no firewall firewall --disabled # No SE Linux! selinux --disabled # Specifies how the GRUB boot loader should be installed bootloader --location mbr # Removes partitions from the system, prior to creation of new partitions clearpart --all --initlabel autopart #part Boot --fstype PPC PReP Boot --size 4 #part /boot --fstype ext3 --size 500 #part / --fstype ext4 --size 3000 #part swap --fstype swap --size 500 # Package Selection %packages #@X Window System #@GNOME Desktop Environment #@Graphical Internet #@Sound and Video @base #@core #@online-docs %end ## Post-installation Script %post rpm --import /usr/share/rhn/RPM-GPG-KEY-fedora # magic config %end