The entry for the latest kernel does not work in the boot section

Hello. My problem: When running the first entry in the menu, an error pops up as in the picture. The other kernels work. I don’t know if this happened after any update. Everything was fine before. Asking for help on how to fix it.

It seems that on your last update something went wrong.

Boot from the 6.11.8 kernel so that you can investigate.

Maybe you ran out of disk space.
What is the output of lsblk -f?

NAME        FSTYPE FSVER LABEL  UUID                                 FSAVAIL FSUSE% MOUNTPOINTS
zram0                                                                               [SWAP]
nvme0n1                                                                             
├─nvme0n1p1 vfat   FAT32        96BE-D191                              50,6M    47% /boot/efi
├─nvme0n1p2                                                                         
├─nvme0n1p3 ntfs                01DA2C158823BDB0                                    
├─nvme0n1p4 ext4   1.0          b85d4624-93fa-4a1f-b70c-e823c64b12ec  571,6M    34% /boot
└─nvme0n1p5 btrfs        fedora 4f16b5cf-0327-4053-97ca-45c6dcd75ef1   94,6G     4% /home

You have not run out of disk space.

Suggest that you try to reinstall the kernel from the terminal and see if that works.

sudo dnf reinstall kernel-6.11.10

Then check that you have the expected files in /boot.
Here is what I have:

ls -ld /boot/*6.11.10*
-rw-r--r--. 1 root root   278012 Nov 22 00:00 /boot/config-6.11.10-300.fc41.x86_64
-rw-------. 1 root root 32559326 Nov 30 13:59 /boot/initramfs-6.11.10-300.fc41.x86_64.img
-rw-r--r--. 1 root root   182572 Nov 30 13:59 /boot/symvers-6.11.10-300.fc41.x86_64.xz
-rw-r--r--. 1 root root  9971334 Nov 22 00:00 /boot/System.map-6.11.10-300.fc41.x86_64
-rwxr-xr-x. 1 root root 16304488 Nov 22 00:00 /boot/vmlinuz-6.11.10-300.fc41.x86_64*

You may have to run sudo dracut --force to get the missing initramfs created.

1 Like

I had to use sudo dracut --force

Problem solved. Thank you very much!