Not logged in
Artifact [016b943a81]

Artifact 016b943a8176c3af78432d39f90454167fe6f600:

Unrecognized artifact
D 2011-02-26T03:41:02
L Kickstarts
P 9901a4311f54f0bfdb857df42493b3318ff22167
W 5618
<i>Credits to the <a href="http://fedoraproject.org/wiki/Anaconda/Kickstart">Fedora Kickstart Guide,</a> as most of this guide is from it.</i>

The AnonOS Project uses Kickstart configs with livecd-tools to build releases. They can be reviewed <a href="http://typewith.me/AnonOS-Development">here.</a> 

To learn how to actually build a liveCD with those kickstarts, go to [developing].

<h2>Creating a kickstart file</h2>

First, be aware of the following issues when you are creating your kickstart file:

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 -- <a href="http://fedoraproject.org/wiki/Anaconda/Kickstart#Chapter_2._Kickstart_Options">More info here.</a> You must include the required options.
  *  The %packages section -- This is where you place added packages. <a href="http://fedoraproject.org/wiki/Anaconda/Kickstart#Chapter_3._Package_Selection">More info here.</a> 
  *  The %pre, %post, and %traceback sections -- These sections can be in any order and are not required.
  *  The %packages, %pre, %post and %traceback sections are all required to be closed with %end
  *  Items that are not required can be omitted.
  *  Lines starting with a pound sign (#) are treated as comments and are ignored.

<h2>Adding Packages</h2>

Use the %packages command to begin a kickstart file section that lists the packages you would like to install.

Packages can be specified by group or by individual package name. livecd-creator defines several groups that contain related packages. Refer to the repodata/*comps.xml file <a href="http://git.fedorahosted.org/git/?p=comps.git;a=blob_plain;f=comps-f14.xml.in;hb=master">here.</a> for a list of groups. 

Each group has an id, user visibility value, name, description, and package list. In the package list, the packages marked as mandatory are always installed if the group is selected, the packages marked default are selected by default if the group is selected, and the packages marked optional must be specifically selected even if the group is selected to be installed.

In most cases, it is only necessary to list the desired groups and not individual packages. Note that the Core and Base groups are always selected by default, so it is not necessary to specify them in the %packages section.

The %packages section is required to be closed with %end. Also, multiple %packages sections may be given. This may be handy if the kickstart file is used as a template and pulls in various other files with the %include mechanism.

Here is an example %packages selection:

%packages
@X Window System
@GNOME Desktop Environment
@Graphical Internet
@Sound and Video
dhcp
%end

As you can see, groups are specified, one to a line, starting with an @ symbol followed by the full group name as given in the comps.xml file. Groups can also be specified using the id for the group, such as gnome-desktop. Specify individual packages with no additional characters (the dhcp line in the example above is an individual package).

Additionally, individual packages may be specified using globs. For instance:

%packages
vim*
kde-i18n-*
%end

This would install all packages whose names start with "vim" or "kde-i18n-".

You can also specify which packages not to install from the default package list:

%packages
-autofs
%end

The following options are available for the %packages option:

    <b>--default</b> 

Install the default package set. This corresponds to the package set that would be installed if no other selections were made on the package customization screen during an interactive install. 

    <b>--excludedocs</b> 

Do not install any of the documentation from any packages. For the most part, this means files in /usr/share/doc* will not get installed though it could mean other files as well, depending on how the package was built. 

    <b>--ignoremissing</b> 

Ignore any packages or groups specified in the packages section that are not found in any configured repository. The default behavior is to halt the installation and ask the user if the installation should be aborted or continued. This option allows fully automated installation even in the error case. It is used as follows: 

        <i>%packages --ignoremissing</i> 

    <b>--instLangs=</b> 

Specify the list of languages that should be installed. This is different from the package group level selections, though. This option does not specify what package groups should be installed. Instead, it controls which translation files from individual packages should be installed by setting RPM macros. Note: this option is not supported by anaconda at the moment, but is recognized by pykickstart for use in such tools as livecd-creator. 

    <b>--nobase</b> 

Don't select the Base group by default. This is useful if you are putting together an extremely minimal system. However with this option, it is very easy to end up with a system that does not fully boot to a login prompt as you will need to list all the packages required to get that much functionality. 

In addition, group lines in the %packages section can take options as well:

    <b>--nodefaults</b> 

Only install the group's mandatory packages, not the default selections. 

    <b>--optional</b> 

In addition to the mandatory and default packages, also install the optional packages. This means all packages in the group will be installed. 


Z 6884ac969d5fdc716f9d994228c0849d