Note: this series of articles applies to CentOS 6; for CentOS 5, see this series.
CentOS (and of course, it’s upstream distro, Red Hat Enterprise Linux) has an extremely powerful, but somewhat poorly documented, tool for rapidly deploying machines and managing their configuration: kickstart. Kickstart lets you build a custom installation that can run hands-free. So not only is the installation quick and easy for you, you can be confident that your machines are configured exactly the way you want them to be.
Imagine that you have 25 web servers (or a mix of web servers, database servers, mail servers, etc.). It would be highly desirable to install identical software packages on all of those machines. In that way, you know that any application you build will run the same way on all machines.
If you use the standard install DVD, achieving such uniformity can be challenging. During the installation, it’s always possible that you might accidentally select a different mix of packages for one machine, especially if you are not using one of the standard installation types. Further, it’s quite likely that for your production environment you might need some additional packages that are not part of the standard CentOS distribution. For example, in our environment, we add apps like aide, analog, httperf, ganglia, iptraf, memcached, nagios, and swatch. If you have to add these packages manually after installation, you’ll spend a lot of time, and you might overlook a machine or a package, leading to inconsistent behavior down the road.
In addition to your software packages, you will likely need to make various system and software configurations. For example, you may need to configure httpd or mysql, or maybe you need to add a group to /etc/group or a user to /etc/passwd. It is critical that these configurations be done consistently on all machines.
The solution is to predefine your package selections with kickstart and let the automated installer guarantee the installation of the same applications on all machines. Further, the postinstaller capabilities of kickstart will allow you to install non-distro applications and perform any system configuration that you can do from a shell script.
If you want to make your life really easy, you can set up your kickstart to run from a single DVD.
Prepare a build system
You will need a CentOS 6 machine on which to assemble the packages and build the custom ISO file. This can be a physical or a virtual machine; my build machine runs under VMWare Fusion on a Mac. Download the two DVD ISOs for the install media. Be sure to validate your MD5 checksums before you get started. If you are going to build on a physical machine, burn the ISOs to DVDs. If you’re using a virtual build machine, you can just mount the ISOs directly.
Install CentOS 6 on your build machine; choose “Desktop” for the installation type (unless you plan to build custom packages from source; if you need to do that, you’ll need to install the development tools as well).
On the build system, create a build directory: ~/kickstart_build. Create subdirectories like this:
1 2 3 4 5 6 |
~/kickstart_build +-- isolinux | +-- Packages</span> | +-- images | +-- ks +-- utils</span> |
Copy all the files from the isolinux directory on CentOS disc 1 into your ~/kickstart_build/isolinux directory. Also copy .discinfo from CentOS disc 1 into your ~/kickstart_build/isolinux directory
Copy all the files from the images directory on CentOS disc 1 into your ~/kickstart_build/isolinux/images directory.
Get the comps.xml file from repodata. In RHEL/CentOS 6, this file is no longer called just “comps.xml”; instead, it has some horrendous hex string for a name. In CentOS 6.2, it is named bedb7dc8fdf920deffbdc5a70ea0d6d77255656556184f5e996e8a88a63d145c-c6-x86_64-comps.xml.gz. Copy it to ~/kickstart_build/comps.xml.gz and gunzip it so that you have ~/kickstart_build/comps.xml.
Your kickstart config file will go into ~/kickstart_build/isolinux/ks. I like to have a separate directory for this, because I build a series of different config files for different machines or classes of machines.
Start from a sample configuration file
It is always best to start with a sample configuration file. CentOS makes it easy for you to get your hands on one. Just perform a standard installation on a machine. After the install, look in look in /root/anaconda-ks.cfg to get a sample kickstart configuration file.
Copy this file into ~kickstart_build/isolinux/ks/ks.cfg. Edit the file and find the partitioning information that is commented out; it will have the following note above it:
1 2 3 4 |
# The following is the partition information you requested # Note that any partitions you deleted are not expressed # here so unless you clear all partitions first, this is # not guaranteed to work |
Uncomment all the lines regarding the disk partitioning. If you don’t do this, your kickstart will have no partition on which to install the selected packages.
Note that the drive configuration here reflects the configuration of your build machine. If that is different from your target machine (for example, your build machine might use IDE drives, and your target might use SCSI, or you may want to use software RAID on the target machine), you’ll have to edit some of these lines. When you’re getting started, it’s easiest if you use a build machine configured identically to your target machine.
Copy the RPMs
You don’t have to do this, but it makes your life easier to have all the RPMs in a single directory. Note that for our custom disc, we’ll copy just the RPMs we need to install, but since we’re going to need to quickly access various RPMs, it’s more efficient to put all of them into a temporary directory. Copy all the files from the Packages folder on DVD 1 to ~kickstart_build/all_rpms. Repeat for DVD 2.
If you have CentOS CDs, copy all the RPMs onto your build machine in a temporary directory. You won’t need most of them, but when you’re tracking down dependencies, it beats switching discs in and out. If you have a DVD, you don’t need to worry about this.
Determine which packages to include
Look in the file ~kickstart_build/comps.xml (which you copied from repodata/comps.xml on disc 1 of the CentOS distribution). This defines the packages and their groups.
Your baseline kickstart configuration file will list the packages that are to be installed (under %packages). Groups are noted with a leading @. Leave @core and @base in the file, since those have system-critical packages in them.
If you want to really trim down your package list to make a tight distribution, you can remove other groups or replace the groups with the names of just packages that you want from those groups, using comps.xml as a reference for which packages are in each group. You can explicitly exclude a package by listing it with a – prepended to the name.
Next comes the most challenging part — compiling the RPMs and resolving dependencies.
I attempted to contact you. When I follow the procedures fairly closely using CentOS 6.6, and then attempt to install, I get either:
– Please insert CentOS disc 1 to continue
or
– Unable to read group information from repositories. This is a problem with the generation of your install tree.
I am attempting with or without the createrepo steps.
Can you provide more specific suggestions?
Also the code fragments are hard to read and copy-paste.
Thanks,
Alan
[email protected]
[email protected]
Terrific work! We typically build ISOs from an existing platform so we added one more script to utils which lets you populate the Packages directory with all of the RPMs on your existing system. It also generates the %packages list for insertion into the ks.cfg file(s). Here’s what goes into the get-rpms shell script for CentOS 6.7:
#!/bin/bash
FILES=
rpm -qa
for f in $FILES
do
echo “Processing $f…”
yum -y reinstall –downloadonly –downloaddir=/root/kickstart_build/isolinux/Packages $f
done
echo “Installed package RPMs have been installed into /root/kickstart_build/isolinux/Packages.”
echo ” ”
# to get just the package names to insert into ks.cfg, kslvm.cfg, ksraid.cfg
echo “Package list for ks configs saved to utils/packages.txt”
echo “%packages” > /root/kickstart_build/utils/packages.txt
rpm -qa –queryformat “%{name}\n” | sort >> /root/kickstart_build/utils/packages.txt
echo “” >> /root/kickstart_build/utils/packages.txt
echo “” >> /root/kickstart_build/utils/packages.txt
Hi Ward,
I was hoping to use your script in order to build my own kickstart image. I have run into an issue, however, whereby the script runs but doesn’t actually download the RPMs and place them in the directory.
I get the following output for each package:
Downloading Packages:
existing because –downloadonly specified
So the script doesn’t seem to be downloading. I should add that my yum line has been tweaked to pull the files from the cd rather than an online repo:
yum –disablerepo=\* –enablerepo=c6-media reinstall $f –downloadonly –downloaddir=/root/kickstart_build/isolinux/Packages/
Any ideas?
Note: backticks should surround the rpm -qa command in the script. The blog removed them.
Hi, Great article and thanks for sharing.
I found that during USB install of custom ISO, the ‘source’ directory disappears once after packages getting installed.
My points.
1. I have put all my files need to copy in source file during creation of ISO.
2. I want to copy file say txt.1 txt.2 or dir1 from source to respective paths(all done in –nochroot).
3. After packages installed, the source file is missing/disappears.
4. But its ok if i use same custom iso to install using CD/DVD. only by USB method its problem to copy these files.
5. I tried many ways to burn custom iso to USB(livecd-tools, unetbootin, dd etc).
6. I had found one solution that needs to copy iso to root path of USB so during post section when source files disappears, i need to mount it again on some other path and then i should copy required files needed.
7. Problem here is i should maintain two iso for CD/DVD and USB. And need to put iso again to home path and distribution is again one more problem.
8. So my agenda is to have single custom ISO which can be used for both CD/DVD or USB.
Thanks in advance.
Any idea how to do as you said above, ” If you are going to build on a physical machine, burn the ISOs to DVDs”? So far I’ve found out about an anaconda script called splittree.py that can create the multiple ISOs, but it doesn’t seem to exist in Centos 6+. Any thoughts?
Thank you!
-Joe
Hello.
I aim to create Centos .iso with preinstalled Mate desktop environment.
I tried above solution but failed, and the created .iso didn’t install rpms which I’ll say about them, now.
Mostly two group packages are needed to set this up: “X Window System” and “Mate Desktop”.
Also to make them working,first epel-release must be enabled.
So what could be done in console:
>> sudo yum install epel-release
>> sudo yum groupinstall “X Window System”
>> sudo yum groupinstall “MATE Desktop”
>> systemctl set-default graphical.target
Seems simple but I can’t create .iso file that after booting, it will behave like standard Centos instalation process,
and also it will install mentioned above group of rpms. I tried to add them to proper folder (as in link) but choosing software
tab was missing in installation GUI.
What should I do, to archive proper installation process, which will install X Window System and Mate desktop:
* How should I modify the kick-start file (.ks)?
* What to do in system-config-kickstart GUI setup.
* Can someone who is well expierienced in kiskstart installation setup, could help me, and we can talk in details about it??
My email: [email protected]
Best regards.
Witold.