From Fedora Project Wiki
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
|setup= | |setup= | ||
#Install Fedora 17 on your machine | #Install Fedora 17 on your machine | ||
#After system installed, check if kexec-tools kernel-debuginfo and crash is installed via <pre>rpm -q kexec-tools | #After system installed, check if kexec-tools kernel-debuginfo and crash is installed via <pre>rpm -q kexec-tools</pre> Or via yum <pre>yum install kexec-tools</pre> | ||
#Reserve crashkernel for kdump by grubby <pre>grubby --args="crashkernl=128M" --update-kernel=$(grubby --default-kernel)</pre> Reboot system and check /proc/cmdline <pre>cat /proc/cmdline | grep "crashkernel"</pre> | #Reserve crashkernel for kdump by grubby <pre>grubby --args="crashkernl=128M" --update-kernel=$(grubby --default-kernel)</pre> Reboot system and check /proc/cmdline <pre>cat /proc/cmdline | grep "crashkernel"</pre> | ||
#Edit /etc/kdump.conf | #Edit /etc/kdump.conf. This is an example: | ||
:<pre> ext4 /dev/mapper/vg_dhcp6558-lv_root | |||
kdump_post /bin/kdump-script | |||
extra_bins /usr/bin/crash | |||
extra_modules twofish-x86_64</pre> | |||
#Apply changes and start kdump via service kdump restart | #Apply changes and start kdump via service kdump restart | ||
|actions= | |actions= |
Revision as of 07:45, 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 kdump_post /bin/kdump-script extra_bins /usr/bin/crash extra_modules twofish-x86_64
- Apply changes and start kdump via service kdump restart
How to test
- Trigger crash via:
echo c > /proc/sysrq-trigger
Expected Results
- Test failed if
cat /proc/cmdline | grep "crashkernel"
got nothing means reserve crashkernel memory failed - Test failed if restart kdump failed
- Test suspend if rpm packages couldn't be installed