Kickstart (Linux)
The Red Hat Kickstart installation method is used by Fedora, Red Hat Enterprise Linux and related Linux distributions to automatically perform unattended operating system installation and configuration. Red Hat publishes Cobbler as a tool to automate the Kickstart configuration process.
Usage
Kickstart is normally used at sites with many such Linux systems, to allow easy installation and consistent configuration of new computer systems.Kickstart configuration files can be built three ways:
- By hand.
- By using the GUI system-config-kickstart tool.
- By using the standard Red Hat installation program Anaconda.
Structure
The kickstart file is a simple text file, containing a list of items, each identified by a keyword.While not strictly required, there is a natural order for sections that should be followed. Items within the sections do not have to be in a specific order unless otherwise noted. The section order is:
- Command section – single line general purpose commands.
- The
%packagessection – listing of software packages to be installed & related options. - The
%pre,%pre-install,%post,%onerror, and%tracebacksections – can contain scripts that will be executed at the appropriate time during the installation.
%packages, %pre, %pre-install, %post, %onerror, and %traceback sections are all required to be closed with %end.Items that are not required for the given installation run can be omitted.
Lines starting with a pound sign are treated as comments and are ignored.
If deprecated commands, options, or syntax are used during a kickstart installation, a warning message will be logged to the anaconda log. Since deprecated items are usually removed within a release or two, it makes sense to check the installation log to make sure you haven’t used any of them. When using
ksvalidator, deprecated items will cause an error.Example
A simple Kickstart for a fully automated Fedora installation.- use Fedora mirror as installation source, set Fedora version and target architecture
- set installation language
- set keyboard
- set root password
- create a sudo capable user
- set timezone
- clear all existing storage
clearpart --all --initlabel
- automatically create default storage layout
%packages
- install the Fedora Workstation environment
- install some package groups
@C Development Tools and Libraries
@System Tools
- install some packages
git
mc
%end