Installing and configuring Crash utility for kernel dumps analysis on RHEL OR CentOS 7
Installing and configuring Crash utility for kernel dumps analysis on RHEL OR CentOS 7 What is Crash utility? Crash is a linux utility which analyses the core dump file created by kdump. Crash utility depends on the kdump and kexec utilities to obtain its input file. A linux kernel, when boots with the crashkernel argument, it reserves some memory space to capture kernel dump in panic conditions. In case kernel panic's, the kexec utility triggers a warm reboot into a dump kernel, where the memory contents of the panicked kernel get's backed up. Once the core dump copied to the configured location then system does cold reboot and loads up standard default kernel. Step 1. Install Crash utility and Kernel-debug package: # yum install crash OR You can download "Crash" source, compile it and install: # wget http://people.redhat.com/anderson/crash-7.2.5.tar.gz # tar -zxvf crash-7.2.5.tar.gz # cd crash-7.2.5 # make && make install ...