Advertising
Welcome to SparkyLinux forums
Zapraszamy również na polsko-języczne Forum https://forum.linuxiarze.pl
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