Some more info:
root@ucs:~# dpkg --list | grep linux-image
ii linux-image-4.19.0-23-amd64 4.19.269-1 amd64 Linux 4.19 for 64-bit PCs (signed)
rc linux-image-4.19.0-24-amd64 4.19.282-1 amd64 Linux 4.19 for 64-bit PCs (signed)
ii linux-image-4.19.0-25-amd64 4.19.289-2 amd64 Linux 4.19 for 64-bit PCs (signed)
ii linux-image-4.19.0-26-amd64 4.19.304-1 amd64 Linux 4.19 for 64-bit PCs (signed)
ii linux-image-4.19.0-27-amd64 4.19.316-1 amd64 Linux 4.19 for 64-bit PCs (signed)
ii linux-image-5.10-amd64 5.10.218-1~deb10u1 amd64 Linux for 64-bit PCs (meta-package)
ii linux-image-5.10.0-0.deb10.30-amd64 5.10.218-1~deb10u1 amd64 Linux 5.10 for 64-bit PCs (signed)
ii linux-image-amd64 4.19+105+deb10u22 amd64 Linux for 64-bit PCs (meta-package)
root@ucs:~# uname -r
4.19.0-27-amd64
I’m not sure what is the right one for my case:
- linux-image-5.10-amd64
- linux-image-5.10.0-0.deb10.30-amd64
My idea is now to remove both images and re-install the right one (or both, if needed):
apt-get purge linux-image-5.10-amd64
apt-get purge linux-image-5.10.0-0.deb10.30-amd64
apt install --install-recommends linux-image-5.10.0-0.deb10.30-amd64 AND / OR linux-image-5.10-amd64
Is it right to do that?
What to do after re-installing the kernel?
Do I have to run update-initramfs (options?), update-grub and grub-install?
Do I have to clean-up the old configurations (like the initrd.-files in /boot) or will apt-get purge do that?
Sorry for the many questions but I’m not really experienced with this and don’t want to mess up the system!