Monday, November 11, 2013

Ubuntu 13.10 old kernel

Hello,
After upgrade to ubuntu 13.10 I found that I am still using old kernel 3.8.*.
My aim was to have 3.11*


1. check what do you have now

dpkg --list | grep linux-image:
c  linux-image-3.8.0-26-generic              3.8.0-26.38                             amd64        Linux kernel image for version 3.8.0 on 64 bit x86 SMP
rc  linux-image-3.8.0-27-generic              3.8.0-27.40                             amd64        Linux kernel image for version 3.8.0 on 64 bit x86 SMP
rc  linux-image-extra-3.8.0-19-generic        3.8.0-19.30                             amd64        Linux kernel image for version 3.8.0 on 64 bit x86 SMP
rc  linux-image-extra-3.8.0-21-generic        3.8.0-21.32                             amd64        Linux kernel image for version 3.8.0 on 64 bit x86 SMP
rc  linux-image-extra-3.8.0-22-generic        3.8.0-22.33                             amd64        Linux kernel image for version 3.8.0 on 64 bit x86 SMP
rc  linux-image-extra-3.8.0-23-generic        3.8.0-23.34                             amd64        Linux kernel image for version 3.8.0 on 64 bit x86 SMP
 
2. Check what is available in repository:
apt-cache search linux-image-extra*


3. Install latest available:
apt-get install linux-image-3.11.0-13-generic
apt-get install linux-headers-3.11.0-13-generic
apt-get install linux-image-extra-3.11.0-13-generic





4. Remove old:

sudo apt-get purge linux-image-3.8.* linux-headers-3.8.* linux-image-extra-3.8.*

No comments:

Post a Comment