[FrontPage] [TitleIndex] [WordIndex

This is a read-only archived version of wiki.centos.org

El Modo Rescate de CentOS para PXE

Aquí está una forma rápida de cómo obtener el módo de Rescate de CentOS por la vía de su servidor PXE.


Este artículo asume que usted ya tiene:

  1. Un servidor PXE al estilo pxelinux funcionando.

  2. Un servidor DHCP funcionado.

En su servidor PXE:

# mkdir -p /tftpboot/images/centos/4.4/

Copie vmlinuz y initd.img del directorio /images/pxeboot/ en el "disco 1" para /tftpboot/images/centos/4.4/

1. Los ficheros de configuración

1.1. Http Method

Cree un fichero de configuración kickstart (ks.cfg) y ubíquelo en su servidor web.

# Kickstart configuration file CentOS 4.4 Rescue Mode
#
#System  language
#
lang en_US.UTF-8
#
#Language modules to install
#
langsupport --default=en_US.UTF-8 en_US.UTF-8
#
#System keyboard
#
keyboard us
#
#System mouse
#
mouse none
#
#Retrieve rescue system from NFS
#
# nfs --server=$yournfsserverip  --dir=/directory/that/contains/disc1/CentOS/RPMS/
#
#Retrieve rescue system from http
#
url --url http://$yourwebserver/directory/that/contains/disc1/CentOS/RPMS/
#
#Network information
#
network --bootproto=dhcp

Entrada para el menú PXE.

LABEL CentOS 4.4 Rescue via HTTP
        KERNEL images/centos/4.4/vmlinuz
        MENU LABEL ^CentOS 4.4 Rescue via HTTP
        APPEND initrd=images/centos/4.4/initrd.img ramdisk_size=10000 text rescue ks=http://$yourwebserver/path/to/your/ks.cfg

1.2. NFS Method

Crear un fichero de configuración (ks.cfg) y ubíquelas en su servidor NFS.

# Kickstart configuration file CentOS 4.4 Rescue Mode
#
#System  language
#
lang en_US.UTF-8
#
#Language modules to install
#
langsupport --default=en_US.UTF-8 en_US.UTF-8
#
#System keyboard
#
keyboard us
#
#System mouse
#
mouse none
#
#Retrieve rescue system from NFS
#
nfs --server=$yournfsserverip  --dir=/directory/that/contains/disc1/CentOS/RPMS/
#
#Retrieve rescue system from http
#
# url --url http://$yourwebserver/directory/that/contains/disc1/CentOS/RPMS/
#
#Network information
#
network --bootproto=dhcp

Entrada para el menú PXE.

LABEL CentOS 4.4 Rescue via NFS
        KERNEL images/centos/4.4/vmlinuz
        MENU LABEL ^CentOS 4.4 Rescue via NFS
        APPEND initrd=images/centos/4.4/initrd.img ramdisk_size=10000 text rescue ks=nfs:$yournfsserverip:/path/to/your/ks.cfg

2023-09-11 07:23