The Linux Kernel's => https://www.kernel.org/
To know how kernel are installed:
Code: Select all
uname -a
Good news LMDE4 already has backports repository activated by default, we use later the backports sources to update our kernel.
To search a newest kernel:
Code: Select all
sudo apt search linux-image
In the output we will see a lot of kernels, but we have interest to the latest, at this time the kernel 5.7:
Lets do it and install the latest kernel:
Code: Select all
sudo apt install linux-image-5.7.0-0.bpo.2-amd64 linux-headers-5.7.0-0.bpo.2-amd64 -t buster-backports -y
A reboot is needed to boot on the new kernel:
Code: Select all
sudo reboot
We can check now:
Code: Select all
uname -a
let's take it a step further by removing the old kernels, in general it is advisable to keep 2 kernels in case there is a problem with one of them.
To view the installed kernel:
Code: Select all
sudo dpkg --list 'linux-image*'
Example to purge a kernel:
Code: Select all
sudo apt autoremove --purge linux-image-5.6.0-0.bpo.2-amd64 linux-headers-5.6.0-0.bpo.2-amd64 -y
We need to upgrade the grub with the changes we made:
Code: Select all
sudo update-grub2
After an reboot in the boot menu, select advanced options, you can also check the kernels who are usable.
In case if you have a graphic card using open firmwares you'll need to update your kernel with it, just check this tutorial