ubuntu查看core dumped的详细错误原因
查看core dumped的详细错误原因 - Hyman的博客 - CSDN博客
https://blog.csdn.net/hyman_c/article/details/53082247
Segmentation fault (core dumped)的解决办法 - 天涯海角 - CSDN博客
https://blog.csdn.net/peiyao456/article/details/70045195
https://askubuntu.com/questions/966407/where-do-i-find-the-core-dump-in-ubuntu-16-04lts
1
In Ubuntu the core dumps are handled by Apport and can be located in /var/crash/. But it is disabled by default in stable releases.
To enable Apport, run: sudo systemctl enable apport.service
or sudo service apport start
.
2
系统默认core文件的大小为0,如果在项目的目录没有产生core文件,则需要用ulimit命令查看和修改core文件的大小。使用ulimit -a查看大小,使用 ulimit -c unlimited
设置core文件不做限制。
如果无法设置请切换到root用户sudo su
3
运行你的程序。
查看 /var/log/apport.log
记录的你的core文件生成路径在哪,一般是“运行路径/core”
4
接着使用gdb 你的程序 core文件
,然后输入r 再接着输入 bt进行调试,可以看到导致问题出现的原因了