![]() |
#Generated by Kickstart Configurator #System language lang en_US #Language modules to install langsupport en_US #System keyboard keyboard us #System mouse mouse --emulthree msintellips/2 #System timezone timezone --utc America/New_York #Root password rootpw Alpha #Reboot after installation reboot #Install Red Hat Linux instead of upgrade install #Use FTP installation media url --url ftp://192.168.5.250/. #System bootloader configuration bootloader --location=mbr #Clear the Master Boot Record zerombr yes #Clear all partitions from the disk clearpart --all --initlabel #Disk partitioning information part /boot --fstype ext3 --size 64 --ondrive hda part / --fstype ext3 --size 512 --ondrive hda part swap --fstype ext3 --size 128 --ondrive hda part /var --fstype ext3 --size 512 --ondrive hda part /tmp --fstype ext3 --size 512 --ondrive hda part /home --fstype ext3 --size 512 --ondrive hda part /usr --fstype ext3 --size 512 --grow --ondrive hda #Use DHCP networking network --bootproto dhcp #System authorization information auth --useshadow --enablemd5 #Firewall configuration firewall --disabled #XWindows configuration information #Probe for video card #Probe for monitor xconfig --depth 16 --resolution 1024x768 --defaultdesktop=GNOME %packages --resolvedeps @X Window System @GNOME Desktop Environment @Editors @Text-based Internet @Office/Productivity @Graphics @Printing Support %post echo "127.0.0.1 localhost.localdomain localhost" > /etc/hosts echo "192.168.5.1 unisys01.rutgers.edu unisys01" >> /etc/hosts echo "192.168.5.2 unisys02.rutgers.edu unisys02" >> /etc/hosts echo "192.168.5.3 unisys03.rutgers.edu unisys03" >> /etc/hosts echo "192.168.5.4 unisys04.rutgers.edu unisys04" >> /etc/hosts echo "192.168.5.5 unisys05.rutgers.edu unisys05" >> /etc/hosts echo "192.168.5.6 unisys06.rutgers.edu unisys06" >> /etc/hosts echo "192.168.5.7 unisys07.rutgers.edu unisys07" >> /etc/hosts echo "192.168.5.8 unisys08.rutgers.edu unisys08" >> /etc/hosts echo "192.168.5.9 unisys09.rutgers.edu unisys09" >> /etc/hosts echo "192.168.5.10 unisys10.rutgers.edu unisys10" >> /etc/hosts echo "192.168.5.11 unisys11.rutgers.edu unisys11" >> /etc/hosts echo "192.168.5.12 unisys12.rutgers.edu unisys12" >> /etc/hosts echo "192.168.5.13 unisys13.rutgers.edu unisys13" >> /etc/hosts echo "192.168.5.14 unisys14.rutgers.edu unisys14" >> /etc/hosts echo "192.168.5.15 unisys15.rutgers.edu unisys15" >> /etc/hosts echo "192.168.5.16 unisys16.rutgers.edu unisys16" >> /etc/hosts echo "192.168.5.17 unisys17.rutgers.edu unisys17" >> /etc/hosts echo "192.168.5.18 unisys18.rutgers.edu unisys18" >> /etc/hosts echo "192.168.5.250 remnant.rutgers.edu remnant" >> /etc/hosts echo "search rutgers.edu" > /etc/resolv.conf echo "name server 128.6.238.13" >> /etc/resolv.conf echo "name server 128.6.224.114" >> /etc/resolv.conf |
#!/bin/bash # for files in $* do fname=`basename $files` if [ -f $files -a $files != "run-rpm.x" -a "${fname%%-*}" != "kernel" ] then echo $files rpm -Fvh --nosignature $files fi done |
|
default=0 timeout=10 splashimage=(hd0,0)/grub/splash.xpm.gz title Red Hat Linux (2.4.20-20.9) root (hd0,0) kernel /vmlinuz-2.4.20-20.9 ro root=LABEL=/ initrd /initrd-2.4.20-20.9.img title Red Hat Linux (2.4.20-8) root (hd0,0) kernel /vmlinuz-2.4.20-8 ro root=LABEL=/ initrd /initrd-2.4.20-8.img |