-
Notifications
You must be signed in to change notification settings - Fork 287
How to upgrade kernel
Peter Manev edited this page Nov 26, 2015
·
11 revisions
SELKS supports its own generic and standard Debian 64 bit packaging repositories. The packages are easy to find:
root@SELKS:~# apt-cache search stamus kibana-dashboards-stamus - Kibana dashboard templates. kibana-stamus - Kibana dashboard interface selks-scripts-stamus - SELKS Scritps by StamusN. linux-firmware-image-3.18.20-stamus - Linux kernel firmware, version 3.18.20-stamus linux-firmware-image-4.1.10-stamus-amd64 - Linux kernel firmware, version 4.1.10-stamus-amd64 linux-firmware-image-4.1.11-stamus-amd64 - Linux kernel firmware, version 4.1.11-stamus-amd64 linux-firmware-image-4.1.13-stamus-amd64 - Linux kernel firmware, version 4.1.13-stamus-amd64 linux-headers-3.18.20-stamus - Linux kernel headers for 3.18.20-stamus on amd64 linux-headers-4.1.10-stamus-amd64 - Linux kernel headers for 4.1.10-stamus-amd64 on amd64 linux-headers-4.1.11-stamus-amd64 - Linux kernel headers for 4.1.11-stamus-amd64 on amd64 linux-headers-4.1.13-stamus-amd64 - Linux kernel headers for 4.1.13-stamus-amd64 on amd64 linux-image-3.18.20-stamus - Linux kernel, version 3.18.20-stamus linux-image-3.18.20-stamus-dbg - Linux kernel debugging symbols for 3.18.20-stamus linux-image-4.1.10-stamus-amd64 - Linux kernel, version 4.1.10-stamus-amd64 linux-image-4.1.10-stamus-amd64-dbg - Linux kernel debugging symbols for 4.1.10-stamus-amd64 linux-image-4.1.11-stamus-amd64 - Linux kernel, version 4.1.11-stamus-amd64 linux-image-4.1.11-stamus-amd64-dbg - Linux kernel debugging symbols for 4.1.11-stamus-amd64 linux-image-4.1.13-stamus-amd64 - Linux kernel, version 4.1.13-stamus-amd64 linux-image-4.1.13-stamus-amd64-dbg - Linux kernel debugging symbols for 4.1.13-stamus-amd64 root@SELKS:~#
NOTE: All SELKS packages by Stamus Networks are using the Debian packaging standard and routines. There are no custom modifications to the kernel. It is just packaged for your convenience.
To upgrade your kernel ([to the latest longterm supported kernel](https://www.kernel.org/category/releases.html)) you can simply for example do (adjust to the latest kernel version available in the repository - see above):
apt-get install linux-libc-dev linux-firmware-image-4.1.13-stamus-amd64 linux-headers-4.1.13-stamus-amd64 linux-image-4.1.13-stamus-amd64 linux-image-4.1.13-stamus-amd64-dbg
Usually this could be sufficient:
apt-get install linux-headers-4.1.13-stamus-amd64 linux-image-4.1.13-stamus-amd64
reboot and then verify:
root@SELKS:~# uname -a
Linux SELKS 4.1.13-stamus-amd64 #1 SMP Thu Nov 27 17:46:35 EDT 2015 x86_64 GNU/Linux
root@SELKS:~#
Done