Linux Kernel Panic — Not Syncing
Criticalboot
Overview
Linux "kernel panic - not syncing" is a fatal kernel error where the system cannot continue and halts immediately.
Key Details
- Most severe Linux error — complete system halt
- Stack trace displayed on screen (if console available)
- Cannot be recovered without reboot
- Similar to Windows BSOD
Common Causes
- VFS: Cannot open root device — wrong root= parameter
- init not found — missing /sbin/init or systemd
- Out of memory during early boot
- Kernel module bug or hardware incompatibility
Steps
- 1Note the panic message — it identifies the cause
- 2For "VFS: Cannot open root device": fix GRUB root parameter
- 3For "init not found": boot from live USB and check /sbin/init
- 4For hardware issues: boot with nomodeset kernel parameter
Tags
linuxbootkernel panictroubleshootingfix
More in Boot
Frequently Asked Questions
The kernel will not attempt to sync (write) data to disk before halting — the error is too severe.