How to perform interactive kickstart installation on Red Hat

Kickstart is used to perform an automated installation where no manual intervention would be needed but there are times when we want the end user to fill in some needed details for eg keyboard type, network details etc so kickstart must wait and prompt for these information before the installation is completed.

Here I have written an article to automate a customized DVD installation using kickstart file
How to create customized bootable boot ISO image in RHEL/CentOS 7

Now suppose in the same DVD installation you want the installation to halt and prompt for network.

This can be done using the %pre and %post installation scripts from the kickstart file.

# vim ks.cfg
---
---
---

# Network Information
%include /tmp/network.ks
--
--
--

# Create a %pre section as below
%pre --interpreter=/usr/bin/bash
exec < /dev/tty6 > /dev/tty6 2> /dev/tty6
chvt 6

read -p "Enter INS hostname    : " HOSTNAME
read -p "Enter IP Address      : " IPADDR
read -p "Enter NetMask         : " NETMASK
read -p "Enter Gateway         : " GATEWAY
echo
sleep 1

echo "network --bootproto=static --hostname=$HOSTNAME --device=eth0 --gateway=$GATEWAY --ip=$IPADDR --netmask=$NETMASK --noipv6 --nodns --onboot=on --activate" > /tmp/network.ks

chvt 1
exec < /dev/tty1 > /dev/tty1 2> /dev/tty1
%end

Here we are halting the automated installation, switching to terminal 6 and prompting user for hostname and network details and the same is populated into "/tmp/network.ks"

which is added as in the ks.cfg

%include /tmp/network.ks
so kickstart will collect this input and store it in the ks.cfg. Once ks.cfg gets all the needed information we have to again switch back the console to tty1 where the actual installation was happening so we do it using the last two lines before %end.

I have tested these steps in Red Hat 6 and 7 and seems to work very well.

5 thoughts on “How to perform interactive kickstart installation on Red Hat”

  1. Network device isn’t always eth0, this seems to work:

    DEVICE=$(pci=`lspci  | awk '/Ethernet/{print $1}'`; find /sys/class/net ! -type d | xargs --max-args=1 realpath  | awk -v pciid=$pci -F\/ '{if($0 ~ pciid){print $NF}}')
    echo "network --bootproto=static --hostname=$HOSTNAME --device=$DEVICE --gateway=$GATEWAY --ip=$IPADDR --netmask=$NETMASK --noipv6 --nameserver=$NAMESERVER --onboot=on --activate" > /tmp/network.ks

    Also hostname is being read but still needs to be applied, adding this fixes that for me:

    echo $HOSTNAME > /proc/sys/kernel/hostname

    Thanks

    Reply
  2. lets suppose i want to have a menu for hard disk partitioning based on user input like 1 for X disk partition scheme and 2 for Y disk parition scheme to be followed by only one kickstart file. what to do ??

    Reply

Leave a Comment