From Fedora Project Wiki
No edit summary |
No edit summary |
||
Line 9: | Line 9: | ||
core_collector makedumpfile --nosuchoptions | core_collector makedumpfile --nosuchoptions | ||
default halt </pre> | default halt </pre> | ||
#Apply changes and start kdump via service kdump restart | #Apply changes and start kdump via <pre>service kdump restart</pre> | ||
|actions= | |actions= | ||
#Trigger crash via: <pre>echo c > /proc/sysrq-trigger</pre> | #Trigger crash via: <pre>echo c > /proc/sysrq-trigger</pre> | ||
|results= | |results= | ||
# | #System halt | ||
}} | }} | ||
[[Category:Kdump_Test_Cases]] | [[Category:Kdump_Test_Cases]] |
Revision as of 07:55, 22 March 2012
Description
Setup
- Install Fedora 17 on your machine
- After system installed, check if kexec-tools kernel-debuginfo and crash is installed via
rpm -q kexec-tools
Or via yumyum install kexec-tools
- Reserve crashkernel for kdump by grubby
grubby --args="crashkernl=128M" --update-kernel=$(grubby --default-kernel)
Reboot system and check /proc/cmdlinecat /proc/cmdline | grep "crashkernel"
- Edit /etc/kdump.conf. This is an example:
:
ext4 /dev/mapper/vg_dhcp6558-lv_root core_collector makedumpfile --nosuchoptions default halt
- Apply changes and start kdump via
service kdump restart
How to test
- Trigger crash via:
echo c > /proc/sysrq-trigger
Expected Results
- System halt