Centos7 内核调试

 

一、部署

编辑文件 /etc/default/grub

 添加参数 ‘crashkernel=‘  在 ‘GRUB_CMDLINE_LINUX‘ 后面。

GRUB_CMDLINE_LINUX="crashkernel=auto crashkernel=128M"

 

执行:

grub2-mkconfig -o /boot/grub2/grub.cfg

systemctl enable kdump.service

shutdown -r now

重启生效

 

/etc/kdump.conf

 

path /var/crash
core_collector makedumpfile -l --message-level 1 -d 31
default reboot

 

 

二、验收

 

执行:
systemctl is-active kdump.service
service kdump status

确认服务启动

 

三、测试

 

echo c > /proc/sysrq-trigger

你可能感兴趣的:(Centos7 内核调试)