/ boot continua acima de 90%

0

Eu verifiquei meus kernels instalados

www-data@May:~$ dpkg -l linux-image-\* | grep ^ii
ii  linux-image-3.13.0-57-generic       3.13.0-57.95                        amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-3.13.0-61-generic       3.13.0-61.100                       amd64        Linux kernel image for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-57-generic 3.13.0-57.95                        amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-extra-3.13.0-61-generic 3.13.0-61.100                       amd64        Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
ii  linux-image-generic                 3.13.0.61.68                        amd64        Generic Linux kernel image

Eu verifiquei minha inicialização

www-data@May:~$ ls /boot/
System.map-3.13.0-57-generic  grub              memtest86+.elf
System.map-3.13.0-61-generic  initrd.img-3.13.0-55-generic  memtest86+_multiboot.bin
abi-3.13.0-57-generic         initrd.img-3.13.0-57-generic  vmlinuz-3.13.0-57-generic
abi-3.13.0-61-generic         initrd.img-3.13.0-61-generic  vmlinuz-3.13.0-61-generic
config-3.13.0-57-generic      lost+found
config-3.13.0-61-generic      memtest86+.bin

O acima é o que eu tenho depois que eu corri sudo apt-get autoremove

Eu continuo a ter > 90% do uso de inicialização.

Por favor, informe.

    
por Kim Stacks 12.08.2015 / 03:37

1 resposta

0

Existem muitos outros pacotes específicos do kernel. Você deve sudo apt-get remove os obsoletos. Aqui está como eu encontrei meus pacotes obsoletos:

# first, use the current kernel version (DO NOT REMOVE YOUR CURRENT KERNEL)  
# to get a list of installed packages with the same version number.
dpkg -l | fgrep $(uname -r | sed -e 's/-generic//') | egrep '^ii'  

# Then, inspecting the output, and manually selecting non-version  
# substrings, construct a regular expression for egrep. I got:
dpkg -l | egrep 'linux-tools-|linux-source-|linux-libc-dev|linux-image-|linux-headers-'| egrep -v $(uname -r | sed -e 's/-generic//')  

Isso produz uma lista de candidatos para sudo apt-get remove . Eliminar desta lista o seu kernel atual e todos os seus parentes com versões semelhantes (eu fiz isso no último egrep ) E as versões anteriores do N. Comece com N = 3, use N = 2 com cuidado e tente evitar o caso N = 1.

NÃO REMOVA O SEU KERNEL ATUAL

    
por waltinator 12.08.2015 / 04:46