If you are running a vanilla install of Debian 8, you may know that the Linux Kernel version is 3.16 out of the box. While this kernel is certainly not old, if you are running on a newer laptop or netbook, you may want to go with a newer Kernel to support your hardware. In this tutorial we are going to detail the steps required to install Linux Kernel 4.1.0 from the Jessie Backports repository. At the time of writing, the latest version in the Jessie Backports repo is 4.1.0.
#!/bin/bash # add backport sources to the end of the file echo "deb http://ftp.us.debian.org/debian/ jessie-backports main" >> /etc/apt/sources.list echo "deb-src http://ftp.us.debian.org/debian/ jessie-backports main" >> /etc/apt/sources.list # update apt & install kernel 4.1 apt-get update ; apt-get install -t jessie-backports linux-image-amd64
after those commands I needed to add 1 more:
apt-get upgrade
otherwise my KDE didnt work after restart
how can I update kernel in Linux board on debian 8.6?