Advertising
Welcome to SparkyLinux forums
Zapraszamy również na polsko-języczne Forum https://forum.linuxiarze.pl
Quote from: pavroo on March 24, 2023, 05:07:30 PMMake sure you have installed the same version of kernel image and headers and you launched your OS with the kernel.
So try:sudo apt update
they have to be in the same versions - now on Sparky7: 6.1.0-6 (6.1.15)
sudo apt install linux-image-amd64 linux-headers-64
Then reboot your system to launch in with that Linux versions.
sudo apt update
sudo apt install linux-image-amd64 linux-headers-amd64
they have to be in the same versions - now on Sparky7: 6.1.0-6 (6.1.15)Quote from: Martin A. on March 12, 2023, 09:15:03 AM[....] for loading kernels is not showing which ones are already installed.
dpkg --list | egrep -i --color 'linux-image|linux-headers'
Quote from: Martin A. on March 12, 2023, 09:15:03 AM[....] And is there a set of command line instructions to remove all different types of kernels?
sudo apt-get remove $(dpkg -l|egrep '^ii linux-(im|he)'|awk '{print $2}'|grep -v `uname -r`)
Quote from: Martin A. on March 12, 2023, 09:15:03 AM[....] Thanks