Opciones de Kickstart - selección de paquetes

Core Package Group

%packages
@core
%end

@core - ‘Core’ simple package group. Contiene aproximadamente 291 paquetes.

Note

Listar paquetes instalados en sistemas operativos basados en Red Hat:

$ rpm -qa

Referencia: Package list for Kickstart

Note

The @Core package group is defined as a minimal set of packages needed for installing a working system.

Referencia: KICKSTART SYNTAX REFERENCE - Package Selection

Default Package Groups

El grupo de paquetes Core es agregado por defecto cuando usamos el parámetro %packages en el archivo Kickstart. Por tanto, el siguiente bloque del archivo kickstart:

%packages
%end

Es equivalente a usar el siguiente bloque en el archivo kickstart:

%packages
@core
%end

Note

The Core group is always selected - it is not necessary to specify it in the %packages section.

Referencia: KICKSTART SYNTAX REFERENCE - Package Selection

Minimal Install Environment Group

%packages
@^minimal
%end

@^minimal - ‘Minimal install’ environment group. Contiene el mandatory group core, que a su vez se conforma de 291 paquetes.

Listar groups (Mandatory y Optional) que contiene el environment group ‘Minimal install’:

'#' yum group info "Minimal Install"

Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
...
Environment Group: Minimal Install
 Environment-Id: minimal
 Description: Basic functionality.
 Mandatory Groups:
   +core
 Optional Groups:
   +debugging

Note

El prefijo @^ está reservado para environment groups

Important

If you are not sure what package should be installed, Red Hat recommends you to select the Minimal Install environment. Minimal install provides only the packages which are essential for running Red Hat Enterprise Linux 7.

Referencia: KICKSTART SYNTAX REFERENCE - Package Selection