Monday, January 26, 2009

Delete all other OS & no package Kickstart file

#platform=x86, AMD64, or Intel EM64T
# System authorization information
auth  --useshadow  --enablemd5 
# System bootloader configuration
bootloader --location=mbr --md5pass=$1$.9UebnNJ$hkbfHsfgw0JDYVGnVWWTq.
# Partition clearing information
clearpart --linux
# Use text mode install
text
# Firewall configuration
firewall --enabled   
# Run the Setup Agent on first boot
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US
# Installation logging level
logging --level=info
# Use NFS installation media
nfs --server=192.168.0.254 --dir=/var/ftp/pub
# Network information
network --bootproto=dhcp --device=eth0 --onboot=on
# Reboot after installation
reboot
#Root password
rootpw --iscrypted $1$bdml0V4e$dTffJK3n.0h0Slimi8XBl.

# SELinux configuration
selinux --enforcing
# System timezone
timezone --isUtc Asia/Calcutta
# Install OS instead of upgrade
install
# X Window System configuration information
xconfig  --defaultdesktop=GNOME --depth=24 --resolution=800x600
# Disk partitioning information
part / --fstype ext3 --size=10000 --asprimary
part swap --size=512 --asprimary

0 Comments: