📖 ~1 min read
Table of contents
Symptom & Impact
Server drops to dracut emergency shell after reboot, causing outage.
Environment & Reproduction
Often appears after kernel update with missing storage/network module in initramfs.
uname -r
rpm -q kernel
Root Cause Analysis
Initramfs is incomplete or boot parameters no longer match root device mapping.
Quick Triage
Boot previous kernel from GRUB and collect dracut logs.
journalctl -b -1 -p err --no-pager
cat /proc/cmdline
Step-by-Step Diagnosis
Confirm root UUID, initramfs presence, and module list.
lsblk -f
grubby --info=ALL
lsinitrd /boot/initramfs-$(uname -r).img | head

Solution – Primary Fix
Rebuild initramfs and regenerate GRUB configuration.
Still having issues? Our Server Management team can diagnose and resolve this for you. Get in touch for a free consultation.
dracut -f --kver $(uname -r)
grub2-mkconfig -o /boot/grub2/grub.cfg
reboot

Solution – Alternative Approaches
Boot older kernel while validating required driver packages.
grubby --set-default /boot/vmlinuz-
Verification & Acceptance Criteria
System boots cleanly to multi-user target.
systemctl get-default
systemctl --failed
Rollback Plan
Set stable previous kernel as default until root cause is resolved.
grubby --default-kernel
Prevention & Hardening
Test kernel updates on canary hosts and keep fallback entries.
dnf versionlock add kernel*
journalctl -k -n 200 --no-pager
Related Errors & Cross-Refs
dracut-initqueue timeout, cannot find root device.
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 boot troubleshooting, dracut manual, grubby usage.
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.