Compaq BL10e Setting up a Linux PXE server and integrating clients - Page 20

Do not con the X Window System., Clear the Master Boot Record.

Page 20 highlights

timezone --utc America/Chicago # Root password rootpw password # Reboot after installation. reboot # Use text mode install. text # Install Red Hat Linux instead of performing an upgrade. install # Use NFS installation media. nfs --server 172.48.0.1 --dir /var/ftp/pub/rh73 # 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 75 --asprimary part swap --recommended part / --fstype ext3 --size 2700 --grow # Use DHCP networking. This is only effective if ks.cfg is local. # network --bootproto=dhcp --device=eth0 # System authorization information auth --useshadow --enablemd5 # Firewall configuration firewall --disabled # Do not configure the X Window System. skipx # Package install information. This is for a minimal install. %packages --resolvedeps wget openssh openssh-clients openssh-server nfs-utils portmap #@Everything %post Note To perform a full package install, uncomment the @Everything line in the kickstart file. 20

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

timezone --utc America/Chicago
# Root password
rootpw password
# Reboot after installation.
reboot
# Use text mode install.
text
# Install Red Hat Linux instead of performing an upgrade.
install
# Use NFS installation media.
nfs --server 172.48.0.1 --dir /var/ftp/pub/rh73
# 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 75 --asprimary
part
swap --recommended
part / --fstype ext3 --size 2700 --grow
# Use DHCP networking. This is only effective if ks.cfg is local.
# network --bootproto=dhcp --device=eth0
# System authorization information
auth
--useshadow
--enablemd5
# Firewall configuration
firewall --disabled
# Do not configure the X Window System.
skipx
# Package install information. This is for a minimal install.
%packages --resolvedeps
wget
openssh
openssh-clients
openssh-server
nfs-utils
portmap
#@Everything
%post
Note
To perform a full package install, uncomment the @Everything line in the
kickstart file.
20