Problema com um erro do kernel durante a atualização

-1

Ocorreu um erro ao atualizar usando o atualizador ubuntu padrão. Depois disso, depois que um relatório de bug foi enviado, eu digitei isso no console.

Existe algum caminho de volta disto ou é uma reinstalação?

~ sudo apt-get -f install
[sudo] password for gary: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED
  linux-image-extra-4.4.0-21-generic
0 to upgrade, 0 to newly install, 1 to remove and 0 not to upgrade.
8 not fully installed or removed.
After this operation, 162 MB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 222138 files and directories currently installed.)
Removing linux-image-extra-4.4.0-21-generic (4.4.0-21.37) ...
depmod: FATAL: could not load /boot/System.map-4.4.0-21-generic: No such file or directory
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.4.0-21-generic /boot/vmlinuz-4.4.0-21-generic
run-parts: executing /etc/kernel/postinst.d/dkms 4.4.0-21-generic /boot/vmlinuz-4.4.0-21-generic
Error! Your kernel headers for kernel 4.4.0-21-generic cannot be found.
Please install the linux-headers-4.4.0-21-generic package,
or use the --kernelsourcedir option to tell DKMS where it's located
Error! Your kernel headers for kernel 4.4.0-21-generic cannot be found.
Please install the linux-headers-4.4.0-21-generic package,
or use the --kernelsourcedir option to tell DKMS where it's located
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.4.0-21-generic /boot/vmlinuz-4.4.0-21-generic
update-initramfs: Generating /boot/initrd.img-4.4.0-21-generic
WARNING: missing /lib/modules/4.4.0-21-generic
Ensure all necessary drivers are built into the linux image!
depmod: ERROR: could not open directory /lib/modules/4.4.0-21-generic: No such file or directory
depmod: FATAL: could not search modules: No such file or directory
cp: cannot stat '/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf': No such file or directory
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.
update-initramfs: failed for /boot/initrd.img-4.4.0-21-generic with 1.
run-parts: /etc/kernel/postinst.d/initramfs-tools exited with return code 1
dpkg: error processing package linux-image-extra-4.4.0-21-generic (--remove):
 subprocess installed post-removal script returned error exit status 1
Errors were encountered while processing:
 linux-image-extra-4.4.0-21-generic
E: Sub-process /usr/bin/dpkg returned an error code (1)
    
por Gary Willoughby 10.06.2016 / 17:52

2 respostas

1

Antes de executar apt-get install -f , veja se o script postinst do pacote do kernel conclui sua configuração. Para fazer esse tipo:

sudo /var/lib/dpkg/info/linux-image-extra-4.4.0-21-generic.postinst configure

Isso deve completar o processo postinst antes de tentar remover o pacote, eu acho.

    
por Rui Bernardo 08.07.2016 / 23:46
0

vejo que você usa   /etc/default/grub: i915.preliminary_hw_support=1:

isso é uma correção para alguns bugs (sugeridos pelos usuários do AskUbuntu), mas também atrapalha o processo de atualização. Apenas apague essa linha do arquivo grub, reinicie e você deve estar pronto.

    
por 3p1i4 03.07.2016 / 04:30