28.4. Automating the Installation with Kickstart
You can allow an installation to run unattended by using Kickstart. A
Kickstart file specifies settings for an installation. Once the installation system boots, it can read a Kickstart file and carry out the installation process without any further input from a user.
The Red Hat Enterprise Linux installation process automatically writes a Kickstart file that contains the settings for the installed system. This file is always saved as /root/anaconda-ks.cfg
. You may use this file to repeat the installation with identical settings, or modify copies to specify settings for other systems.
Firstboot does not run after a system is installed from a Kickstart file unless a desktop and the X Window System were included in the installation and graphical login was enabled. Either specify a user with the
user
option in the Kickstart file before installing additional systems from it (refer to
Section 32.4, “Kickstart Options” for details) or log into the installed system with a virtual console as root and add users with the
adduser
command.
Red Hat Enterprise Linux includes a graphical application to create and modify Kickstart files by selecting the options that you require. Use the package system-config-kickstart
to install this utility. To load the Red Hat Enterprise Linux Kickstart editor, choose → → .
Kickstart files list installation settings in plain text, with one option per line. This format lets you modify your Kickstart files with any text editor, and write scripts or applications that generate custom Kickstart files for your systems.
To automate the installation process with a Kickstart file, use the ks
option to specify the name and location of the file:
linux ks=location/kickstart-file.cfg
You may use Kickstart files that are held on either removable storage, a hard drive, or a network server. Refer to
Table 28.2, “Kickstart sources” for the supported Kickstart sources.
Table 28.2. Kickstart sources
Kickstart source |
Option format |
DVD drive |
ks=cdrom:/directory/ks.cfg |
Hard Drive |
ks=hd:/device/directory/ks.cfg |
Other Device |
ks=file:/device/directory/ks.cfg |
HTTP Server |
ks=https://server.mydomain.com/directory/ks.cfg |
FTP Server |
ks=ftp://server.mydomain.com/directory/ks.cfg |
NFS Server |
ks=nfs:server.mydomain.com:/directory/ks.cfg |
To obtain a Kickstart file from a script or application on a Web server, specify the URL of the application with the ks=
option. If you add the option kssendmac
, the request also sends HTTP headers to the Web application. Your application can use these headers to identify the computer. This line sends a request with headers to the application https://server.mydomain.com/kickstart.cgi:
linux ks=https://server.mydomain.com/kickstart.cgi kssendmac