📖 ~1 min read
Table of contents
Symptom & Impact
Post-crash root-cause analysis is blocked because vmcore files are absent.
Environment & Reproduction
Systems with kdump installed but crashkernel memory not reserved.
systemctl status kdump
cat /proc/cmdline | tr ' ' '
' | grep crashkernel
Root Cause Analysis
Crash kernel reservation or kdump target path is misconfigured.
Quick Triage
Confirm crashkernel parameter and kdump target accessibility.
kdumpctl showmem
grep -E 'path|core_collector' /etc/kdump.conf
Step-by-Step Diagnosis
Run kdump sanity checks and inspect service logs.
kdumpctl test
journalctl -u kdump -n 200 --no-pager

Solution – Primary Fix
Set crashkernel on boot cmdline and restart kdump service.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
grubby --update-kernel=ALL --args='crashkernel=auto'
systemctl enable --now kdump
reboot

Solution – Alternative Approaches
Store vmcore on dedicated remote target to avoid local disk limits.
vi /etc/kdump.conf
systemctl restart kdump
Verification & Acceptance Criteria
kdumpctl status is ready and test dump path is writable.
kdumpctl status
ls -ld /var/crash
Rollback Plan
Remove crashkernel argument if memory pressure affects critical workloads.
grubby --update-kernel=ALL --remove-args='crashkernel=auto'
Prevention & Hardening
Audit kdump readiness after every kernel update.
rpm -q kexec-tools
kdumpctl status
Related Errors & Cross-Refs
No crashkernel parameter, kdump service inactive, vmcore missing.
Related tutorial: View the step-by-step tutorial for oracle-linux-10.
View all oracle-linux-10 tutorials on the Tutorials Hub →
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
kdump configuration and kernel crash analysis workflow.
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.