On 7/26/20 10:56 AM, Sreyan Chakravarty wrote:
Yeah, I have removed the a kernel component via:
sudo dnf remove kernel-*5.7.10-201.fc32.x86_64
And it did remove something but it did not remove the kernel as it is still present on the GRUB menu and is bootable.
You didn't give the output from dnf, but I assume that it only let you remove the kernel metapackage because you can't remove the running kernel.
Running the following command I get the output:
$ dnf list installed kernel-* | grep -i 5.7
kernel-core.x86_64 5.7.10-201.fc32 kernel-devel.x86_64 5.7.10-201.fc32 kernel-headers.x86_64 5.7.10-200.fc32 kernel-modules.x86_64 5.7.10-201.fc32 kernel-modules-extra.x86_64 5.7.10-201.fc32
A better command, at least for removal purposes would be "rpm -qa | grep kernel".
How on earth do I now remove these ?
Could you just give me a sample DNF remove command for these ?
You need to boot into a different kernel and then run: dnf remove kernel-core-5.7.10-201.fc32 Removing that will remove the other ones as well.