GNU/Linux >> Tutoriales Linux >  >> Cent OS

Centos:¿la partición de arranque está casi llena en Centos?

Recibí una advertencia de que mi partición /boot está casi llena (85%). ¿Qué tengo que hacer? ¿Puedo eliminar uno de los núcleos de respaldo? ¿Cómo hacerlo de forma segura?

Mi partición en este momento

Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/sda2             10321208    719856   9077064   8% /
tmpfs                  4015460         0   4015460   0% /dev/shm
/dev/sda1               101133     80781     15130  85% /boot
/dev/sda8            253782660  47668764 193222404  20% /home
/dev/sda7              1032088    535840    443820  55% /tmp
/dev/sda3             10321208   4823740   4973180  50% /usr
/dev/sda5             10321208   1807284   7989636  19% /var

El Kernel que tengo

[email protected] [/boot]# rpm -q kernel
kernel-2.6.32-358.el6.x86_64
kernel-2.6.32-358.18.1.el6.x86_64
kernel-2.6.32-358.23.2.el6.x86_64

El directorio /Boot

[email protected] [/boot]# ls -la /boot
total 78741
dr-xr-xr-x.  5 root root     2048 Dec  3 05:33 ./
drwxr-xr-x. 23 root root     4096 Dec  4 05:46 ../
-rw-r--r--   1 root root   104112 Aug 28 12:43 config-2.6.32-358.18.1.el6.x86_64
-rw-r--r--   1 root root   104112 Oct 16 14:01 config-2.6.32-358.23.2.el6.x86_64
-rw-r--r--.  1 root root   104081 Feb 21  2013 config-2.6.32-358.el6.x86_64
drwxr-xr-x.  3 root root     1024 Sep 20 20:15 efi/
drwxr-xr-x.  2 root root     1024 Oct 21 15:06 grub/
-rw-r--r--   1 root root 16191847 Sep 20 20:21 initramfs-2.6.32-358.18.1.el6.x86_64.img
-rw-r--r--   1 root root 16261655 Oct 21 15:06 initramfs-2.6.32-358.23.2.el6.x86_64.img
-rw-r--r--.  1 root root 16187335 Sep 20 20:16 initramfs-2.6.32-358.el6.x86_64.img
-rw-------   1 root root  3698835 Sep 20 20:27 initrd-2.6.32-358.18.1.el6.x86_64kdump.img
-rw-------   1 root root  3983771 Dec  3 05:33 initrd-2.6.32-358.23.2.el6.x86_64kdump.img
-rw-------   1 root root  3695290 Sep 20 20:21 initrd-2.6.32-358.el6.x86_64kdump.img
drwx------.  2 root root    12288 Sep 20 20:13 lost+found/
-rw-r--r--   1 root root   185949 Aug 28 12:44 symvers-2.6.32-358.18.1.el6.x86_64.gz
-rw-r--r--   1 root root   185978 Oct 16 14:02 symvers-2.6.32-358.23.2.el6.x86_64.gz
-rw-r--r--.  1 root root   185734 Feb 21  2013 symvers-2.6.32-358.el6.x86_64.gz
-rw-r--r--   1 root root  2408641 Aug 28 12:43 System.map-2.6.32-358.18.1.el6.x86_64
-rw-r--r--   1 root root  2408974 Oct 16 14:01 System.map-2.6.32-358.23.2.el6.x86_64
-rw-r--r--.  1 root root  2407466 Feb 21  2013 System.map-2.6.32-358.el6.x86_64
-rwxr-xr-x   1 root root  4046224 Aug 28 12:43 vmlinuz-2.6.32-358.18.1.el6.x86_64*
-rw-r--r--   1 root root      171 Aug 28 12:43 .vmlinuz-2.6.32-358.18.1.el6.x86_64.hmac
-rwxr-xr-x   1 root root  4047152 Oct 16 14:01 vmlinuz-2.6.32-358.23.2.el6.x86_64*
-rw-r--r--   1 root root      171 Oct 16 14:01 .vmlinuz-2.6.32-358.23.2.el6.x86_64.hmac
-rwxr-xr-x.  1 root root  4043888 Feb 21  2013 vmlinuz-2.6.32-358.el6.x86_64*
-rw-r--r--.  1 root root      166 Feb 21  2013 .vmlinuz-2.6.32-358.el6.x86_64.hmac

El Kernel que estoy usando

[email protected] [/boot]# uname -a
Linux server1 2.6.32-358.23.2.el6.x86_64 #1 SMP Wed Oct 16 18:37:12 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

Respuesta aceptada:

Haga lo siguiente para mantener solo los últimos 2 kernels en su sistema, para mantener /boot limpio

1 – Editar /etc/yum.conf y establezca el siguiente parámetro

installonly_limit=2

Esto hará que su administrador de paquetes conserve solo los 2 últimos núcleos en su sistema (incluido el que se está ejecutando)

2 – Instalar yum-utils :

yum install yum-utils

3- Haz una limpieza del núcleo antiguo:

package-cleanup --oldkernels --count=2

Hecho. Esto borrará de buena manera los núcleos antiguos y mantendrá solo los últimos 2 para las próximas actualizaciones.

Para casos especiales en los que tiene vmlinuz-0-rescue-* y initramfs-0-rescue-* archivos que utilizan demasiado espacio en disco, consulte esta pregunta en U&L:

  • Eliminar la imagen de rescate de /boot en fedora
Relacionado:Linux:/dev/disk/by-uuid/ y ¿por qué usa todo el espacio libre en el disco?
Cent OS
  1. Instalación de un servidor CentOS 6.2 preparado para Oracle

  2. Instale TeamViewer en CentOS 5 / RHEL 5

  3. Restablecer contraseña de root en CentOS 7 / RHEL 7

  4. Cómo instalar Habari en CentOS 7

  5. CentOS/RHEL:Conversión de un sistema de archivos raíz existente en una partición LVM

Cómo instalar Magento en CentOS 7

Cómo instalar InvoicePlane en CentOS 7

Cómo instalar WordPress en CentOS 7

Cómo instalar osTicket en CentOS 7

Cómo instalar PrestaShop en CentOS 7

Cómo recuperar GRUB (partición de arranque dañada) en CentOS/RHEL 5,6