📖 ~1 min read
Table of contents
Symptom & Impact
Kernel updates complete partially and next boot may fail or lack required drivers.
Environment & Reproduction
Happens when /boot space is low or dracut modules are inconsistent.
dnf upgrade -y kernel
df -h /boot
rpm -qa | grep kernel
Root Cause Analysis
Insufficient /boot capacity, stale kernels, or dracut configuration conflicts block initramfs build.
Quick Triage
Collect update and dracut error context quickly.
journalctl -b -p err | tail -n 80
ls -lh /boot
dnf history info last
Step-by-Step Diagnosis
Validate dracut module dependencies and target kernel artifacts.
dracut --print-cmdline
lsinitrd /boot/initramfs-$(uname -r).img | head
grep -R . /etc/dracut.conf.d

Solution – Primary Fix
Free /boot space, regenerate initramfs, and rebuild grub config.
Still having issues? Our Server Management team can diagnose and resolve this for you. Get in touch for a free consultation.
dnf remove -y $(dnf repoquery --installonly --latest-limit=-2 -q)
dracut -f --regenerate-all
grub2-mkconfig -o /boot/grub2/grub.cfg

Solution – Alternative Approaches
Temporarily install to previous known-good kernel and hold upgrades until cleanup.
dnf versionlock add kernel*
dnf reinstall -y kernel-core
Verification & Acceptance Criteria
Initramfs exists for active and fallback kernels and boot entries are valid.
ls -lh /boot/initramfs-*
grubby --info=ALL
journalctl -k -n 50
Rollback Plan
Boot into prior kernel entry and undo latest kernel transaction if instability appears.
dnf history rollback last
grub2-set-default 0
Prevention & Hardening
Enforce /boot housekeeping and monitor kernel artifact growth.
Automate patch management and compliance across your fleet with our DevOps services.
dnf install -y dnf-plugins-core
dnf repoquery --installonly --latest-limit=-2 -q
Related Errors & Cross-Refs
Can pair with LVM activation delays and fstab boot failures.
Related tutorial: View the step-by-step tutorial for rhel-10.
View all rhel-10 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
RHEL kernel lifecycle and dracut troubleshooting guidance.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today — we respond within one business day.