My server runs Ubuntu 12.04.5 LTS. I try to keep it up to date as possible by doing
sudo apt-get update && sudo apt-get upgrade
regularly. So far I was assuming that this would update the kernel as well. Today I noticed however that I am running a totally outdated kernel (uname-r
gives 3.2.0-77-generic).
Doing sudo apt-get dist-upgrade
didn't fix this. Then I tried sudo apt-get install linux-generic linux-headers-generic linux-image-generic
- also with no success...
Why am I not receiving the latest kernels and how can I fix this?
-utopic
HWE packages should be present. – muru Feb 27 '15 at 10:01sudo apt-get install --install-recommends linux-generic-lts-trusty
(note trusty) and now I am on 3.13.0-46.I am not sure if this question is a duplicate, since mine is more specific on keeping the kernel up-to-date. So if you would like to provide an answer you will have my upvote ;)
– n1000 Feb 27 '15 at 10:22