GNU/Linux >> Tutoriales Linux >  >> Linux

CentOS / RHEL 6:Cómo extraer la imagen de initramfs y editarla/verla

En algunos casos, es posible que desee extraer el archivo de imagen initramfs para comprobar el contenido integrado. Esta publicación proporciona pasos para extraer archivos de imagen initramfs para RHEL 6.

Pasos

1. Localice su imagen initramfs y verifique el tipo de archivo.

# ls -la /boot/initramfs-$(uname -r).img
-rw-r--r--. 1 root root 16196566 Feb  4  2015 /boot/initramfs-2.6.32-358.el6.x86_64.img
# file /boot/initramfs-2.6.32-358.el6.x86_64.img
/boot/initramfs-2.6.32-358.el6.x86_64.img: gzip compressed data, from Unix, last modified: Wed Feb  4 18:31:54 2015, max compression

2. Cree un directorio en /tmp y copie el archivo de imagen initramfs en ese directorio (verifique si /tmp tiene suficiente espacio para contener initramfs):

# mkdir /tmp/initrmafs
# cp /boot/initramfs-$(uname -r).img /tmp/initramfs

3. Vaya a /tmp/initramfs y ejecute

# cd /tmp/initramfs
# gzip -dc /boot/initramfs-2.6.32-358.el6.x86_64.img | cpio -id
90556 blocks

El comando anterior debe extraer la imagen de initramfs y crear directorios que pueda investigar

# ls -lrt
total 15924
-rw-r--r-- 1 root root 16196566 Feb  4  2015 initramfs-2.6.32-358.el6.x86_64.img
drwxr-xr-x 2 root root     4096 Sep  2 11:01 pre-udev
drwxr-xr-x 2 root root     4096 Sep  2 11:01 cmdline
drwxr-xr-x 2 root root     4096 Sep  2 11:01 bin
drwxr-xr-x 2 root root     4096 Sep  2 11:01 proc
drwxr-xr-x 4 root root     4096 Sep  2 11:01 var
drwxrwxrwt 2 root root     4096 Sep  2 11:01 tmp
drwxr-xr-x 2 root root     4096 Sep  2 11:01 sysroot
drwxr-xr-x 2 root root     4096 Sep  2 11:01 sys
drwxr-xr-x 7 root root     4096 Sep  2 11:01 etc
-rw-r--r-- 1 root root       19 Sep  2 11:01 dracut-004-303.el6
drwxr-xr-x 2 root root     4096 Sep  2 11:01 pre-trigger
drwxr-xr-x 2 root root     4096 Sep  2 11:01 mount
drwxr-xr-x 2 root root     4096 Sep  2 11:01 initqueue-timeout
drwxr-xr-x 2 root root     4096 Sep  2 11:01 emergency
drwxr-xr-x 7 root root     4096 Sep  2 11:01 lib
drwxr-xr-x 2 root root     4096 Sep  2 11:01 initqueue-settled
drwxr-xr-x 2 root root     4096 Sep  2 11:01 initqueue-finished
-rwxr-xr-x 1 root root     8879 Sep  2 11:01 init
drwxr-xr-x 7 root root     4096 Sep  2 11:01 usr
drwxr-xr-x 2 root root     4096 Sep  2 11:01 pre-pivot
drwxr-xr-x 3 root root     4096 Sep  2 11:01 dev
drwxr-xr-x 3 root root     4096 Sep  2 11:01 lib64
drwxr-xr-x 2 root root     4096 Sep  2 11:01 sbin
drwxr-xr-x 2 root root     4096 Sep  2 11:01 initqueue

Ahora puede verificar y editar la imagen de initramfs, por ejemplo, los registros de inicio se encuentran en /var/log directorio. También puede verificar qué módulos están cargados en initramfs, para eso, verifique /lib/modules o /lib/dracut .También es posible editar cualquier archivo en /etc/ si, por ejemplo, es necesario cambiar /etc/multipath.conf.

4. Ahora, cuando se realicen cambios para recrear la imagen de initramfs, ejecute

# cd /tmp/initramfs
# rm initramfs-2.6.32-358.el6.x86_64.img
# find . | cpio -H newc -o > initramfs-2.6.32-358.el6.x86_64.cpio
# cat initramfs-2.6.32-358.el6.x86_64.cpio | gzip -9 > /tmp/initramfs-2.6.32-358.el6.x86_64.img

5. Ahora puede reemplazar esta imagen de initramfs (/tmp/initramfs-2.6.32-358.el6.x86_64.img ) con uno ubicado en /boot/

# cp /tmp/initramfs-2.6.32-358.el6.x86_64.img /boot/

Ver el contenido de la imagen de initramfs

Para enumerar solo el contenido de un archivo de imagen initramfs, puede ejecutar:

# lsinitrd /boot/initramfs-2.6.32-358.el6.x86_64.img
/boot/initramfs-2.6.32-358.el6.x86_64.img: 16M
========================================================================
========================================================================
drwxr-xr-x  24 root     root            0 Feb  4  2015 .
drwxr-xr-x   2 root     root            0 Feb  4  2015 pre-udev
-rwxr-xr-x   1 root     root         1208 Jan  9  2013 pre-udev/30resume-genrules.sh
-rwxr-xr-x   1 root     root          149 Jan 15  2010 pre-udev/30mdmon-pre-udev.sh
....
CentOS / RHEL 7:Cómo extraer la imagen de initramfs y editarla/verla


Linux
  1. CentOS / RHEL 7:Cómo extraer la imagen de initramfs y editarla/verla

  2. CentOS / RHEL 7:Cómo eliminar una imagen de rescate usando grubby

  3. Cómo extraer archivos RAR en CentOS/RHEL 7 y 8

  4. CentOS / RHEL:Cómo reducir el sistema de archivos raíz LVM

  5. CentOS/RHEL:Cómo deshabilitar/habilitar el inicio de sesión ssh de usuario root y no root directo

Cómo instalar MariaDB en CentOS 8 / RHEL 8

Cómo instalar y configurar GlusterFS en CentOS 7/CentOS 8

¿Cómo instalar EPEL Repo en CentOS y RHEL 7?

CentOS / RHEL 5,6:Cómo cambiar la zona horaria

Cómo instalar y configurar Kerberos en CentOS/RHEL 7

Cómo restablecer la contraseña raíz en CentOS/RHEL 8