Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
112 views1 page

Linux Interview Questions & Answers How Do You Configure Kickstart?

Kickstart installation allows automatic installation of Red Hat or other Linux distributions using a simple text kickstart file containing installation instructions. This file defines partitioning, packages to install, users to create, and other configuration details. It can be written manually or using the system-config-kickstart tool. Once written, the kickstart file path is passed as a boot option to initiate an unattended installation using the defined configuration.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
112 views1 page

Linux Interview Questions & Answers How Do You Configure Kickstart?

Kickstart installation allows automatic installation of Red Hat or other Linux distributions using a simple text kickstart file containing installation instructions. This file defines partitioning, packages to install, users to create, and other configuration details. It can be written manually or using the system-config-kickstart tool. Once written, the kickstart file path is passed as a boot option to initiate an unattended installation using the defined configuration.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Linux Interview Questions & Answers How do you configure Kickstart?

Kickstart installation is a method of installing Red Hat (or any other distribution) automatically. It needs a simple text file containing all the information which anaconda installer needs while installing the machine. This kickstart file is a simple text file containing all the information in a special syntactical manner so that anaconda can read it and move on further for installation. To write a kickstart file, there are so many tools. Red Hat too provide a graphical tool which is system-config-kickstart The tool system-config-kickstart is so simple and has very limited functionality, so one can write an extensive kickstart file using the same. But one can refer the following documentation for writing the one. https://access.redhat.com/site/documentation/enUS/Red_Hat_Enterprise_Linux/6/html/Installation_Guide/s1-kickstart2-options.html This is one of the best documentation available for writing a kickstart file. After writing a kickstart file , following is a sample. ###########sample########### install text cdrom lang en_US keyboard us network --bootproto dhcp onboot=yes zerombr bootloader --location mbr timezone America/Denver auth --enablemd5 --enableshadow rootpw redhat selinux --disabled firewall --disabled skipx clearpart --all --initlabel reboot

part /boot --fstype=ext3 --size=200 part pv.01 --size=1000 --grow part swap --size=1000 --fstype=swap volgroup myvg pv.01 logvol /home --vgname=myvg --name=homevol --size=500 logvol / --vgname=myvg --name=rootvol --size=1000 --grow %packages @base
################################ One can host this file to some network like http://<some_ip>/ks.cfg and when booted with the bootable dvd media, provide the following boot parameters. Boot: linux ks=http://<some_ip>/ks.cfg This will first fetch the kickstart file and will install using it.

You might also like