I had installed Ubuntu 12.04 64-bit on my Laptop (host OS) when it was released (around April, 2012) and after applying all the patches (sudo apt-get update;sudo apt-get dist-upgrade), the version of Linux kernel is
uname -r
3.2.0-53-generic
Recently I downloaded ubuntu-12.04.3-desktop-amd64.iso and used if for installing a guest OS on top of VirtualBox, the default Linux kernel is
uname -r
3.8.0-29-generic
And 3.8.0-34 is available on doing a dist-upgrade on the guest.
Why is not the kernel version getting upgraded to 3.8.0-* on the host OS even after a dist-upgrade? I am getting the rest of the upgrades though.
Also, because of the kernel mismatch I am not able to install the VirtualBox guest additions.
apt-get dist-upgrade
on the host, so this should have upgraded the kernels also. Also, in the synaptic linux-generic points to 3.2.0.57.68 and not the latest 3.8.0-29 version of Kernel. – Praveen Sripati Dec 20 '13 at 13:59dist-upgrade
if you don't have the meta package installed it will not upgrade the kernel out of the3.2
. If you doapt-cache search image | grep linux-image
you will notice several kernel versions that you don't have installed. – Braiam Dec 20 '13 at 14:09sudo apt-get install linux-generic
installed 3.2.0.57.68 and not the latest kernel. I did asudo apt-cache search linux-image | grep 34
and I seelinux-image-3.8.0-34-generic
as one of it. I was able to manually update the kernel withsudo apt-get install linux-image-3.8.0-34-generic
, but it's a pain. – Praveen Sripati Dec 20 '13 at 14:49linux-image-3.8.0-34-generic
or the package that depends of it (I don't use LTS so I wouldn't know) but a simpleapt-cache rdepends linux-image-3.8.0-34-generic
will tell you exactly what package is (I hope is not something likelinux-image-lts-raring-generic
) – Braiam Dec 20 '13 at 14:54apt-cache rdepends linux-image-3.8.0-34-generic
returnslinux-image-generic-lts-raring
and I am usingPrecise
. Not sure, but I am missing something.linux-generic
should point to the latest kernel on any version and it is not. – Praveen Sripati Dec 20 '13 at 15:05