编程
C语言学习
https://www.dotcpp.com/course/c/
linux开发调试
打开核心转存
临时打开
ulimit -c unlimited
永久打开
vi /etc/profile
# 将下行加到入profile 文件中,保存退出
ulimit -c unlimited
配置core文件生成在当前路径
打开 /etc/sysctl.conf 文件,增加以下配置
kernel.core_pattern = core.%e.%p.%t
kernel.core_uses_pid = 0
使用GDB调试core文件
#gdb <程序> <core文件>
gdb hello core
https://zhuanlan.zhihu.com/p/530685908