Como removo o kernel 3.5.0-36 do meu sistema?

0

Eu posso ver a entrada de 3.5.0-36 na minha entrada de inicialização. Mas não consigo removê-lo porque não há pacote para remover.

Veja as saídas de comando abaixo para mais detalhes.

1) Comando:

sudo update-grub2

Saída:

Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.4.0-75-generic
Found initrd image: /boot/initrd.img-4.4.0-75-generic
Found linux image: /boot/vmlinuz-4.4.0-72-generic
Found initrd image: /boot/initrd.img-4.4.0-72-generic
Found linux image: /boot/vmlinuz-3.5.0-36-generic
Found initrd image: /boot/initrd.img-3.5.0-36-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done

2) Comando:

dpkg -l | grep 'linux-image'

Saída:

ii  linux-image-4.4.0-72-generic                    4.4.0-72.93        amd64        Linux kernel image for version 4.4.0 on 64 bit x86 SMP
ii  linux-image-4.4.0-75-generic                    4.4.0-75.96        amd64        Linux kernel image for version 4.4.0 on 64 bit x86 SMP
ii  linux-image-extra-4.4.0-72-generic              4.4.0-72.93        amd64        Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP
ii  linux-image-extra-4.4.0-75-generic              4.4.0-75.96        amd64        Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP
ii  linux-image-generic                             4.4.0.75.81        amd64        Generic Linux kernel image

3) Comando:

uname -a ; lsb_release -a

Saída:

Linux manish-Vostro-3446 4.4.0-75-generic #96-Ubuntu SMP Thu Apr 20 09:56:33 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.2 LTS
Release:    16.04
Codename:   xenial
    
por manishraj2011 15.05.2017 / 00:25

1 resposta

2
  1. Verifique se o arquivo está no /boot :

    ls -la /boot |grep '3\.5'
    
  2. Remova o arquivo. Tenha cuidado com espaços. Este comando irá avisar antes de deletar cada arquivo

    sudo rm -i /boot/*-3.5.0-36*
    
  3. Atualize seu menu de inicialização

    sudo update-grub2
    
por sergtech 15.05.2017 / 03:21