Acabei de atualizar meu desktop do Ubuntu 14.04 LTS para 16.04 LTS. Eu tive a mesma situação descrita aqui O kernel não atualizou entre 14.04 LTS para 16.04 LTS e Por que o apt não está mais atualizando o kernel? mas nenhuma das soluções funcionou para mim.
Ao fazer sudo apt-get install linux
, obtenho
dev:~$sudo apt-get install linux
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package linux
e ao fazer sudo apt install linux-generic
, obtenho
dev:~$sudo apt install linux-generic
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
linux-generic : Depends: linux-headers-generic (= 4.4.0.66.70) but 4.4.0.67.72 is to be installed
E: Unable to correct problems, you have held broken packages.
cat / etc / os-release
dev:~$ cat /etc/os-release
NAME="Ubuntu"
VERSION="16.04.2 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.2 LTS"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial
As imagens instaladas são (é muito longa, mas no final):
dpkg -l | grep linux-image
linux-image-extra-3.13.0-113-generic 3.13.0-113.160 amd64 Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP
rc
linux-image-extra-4.4.0-67-generic 4.4.0-67.88 amd64 Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP
e também isso:
dev:~$ uname -r
3.13.0-113-generic
Eu não instalei nenhum kernel sozinho, mas entendo que provavelmente fiz algo.
Como posso resolver esta situação?
EDITAR
dev:~/temp$ apt-cache policy linux-headers-generic
linux-headers-generic:
Installed: 4.4.0.67.72
Candidate: 4.4.0.67.72
Version table:
*** 4.4.0.67.72 100
100 /var/lib/dpkg/status
4.4.0.66.70 500
500 http://se.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages
500 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages
4.4.0.21.22 500
500 http://se.archive.ubuntu.com/ubuntu xenial/main amd64 Packages
EDIT 2
A resposta fornecida por fkraiem foi a solução para minhas perguntas, mas eu também atualizo o kernel com a ajuda da resposta de user535733. Valeu pessoal!