这篇文章将为大家详细讲解有关linuxcore文件是什么,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

core文件简介:

Core文件其实就是内存的映像,当程序崩溃时,存储内存的相应信息,主用用于对程序进行调试。当程序崩溃时便会产生core文件,其实准确的应该说是core dump 文件,默认生成位置与可执行程序位于同一目录下,文件名为core.***,其中***是某一数字。

使用core文件调试方法:

生成方法

查看当前 core 文件的状态

 $ ulimit -a ... -c: core file size (blocks)   0 # 关闭状态 ...

打开生成开关

 ulimit -c unlimited ulimit -a ... -c: core file size (blocks)   unlimited ...

对 core 文件的大小进行限制,单位为 blocks ,一般 1 block=512 bytes ,设置太小可能导致不会生成文件

 $ ulimit -c 1024 $ ulimit -a ... -c: core file size (blocks)   1024 ...

关闭生成开关

 ulimit -c 0 ulimit -a ... -c: core file size (blocks)   0 ...

上面对 core 文件的操作仅对当前生效,若需要永久生效,则要将相应操作写入 /etc/profile

生成路径

core 文件默认生成在程序的工作目录,可以对生成路径进行设置,需要保证对对应目录有足够空间并具有写权限

 ulimit -c 0 ulimit -a ... -c: core file size (blocks)   0 ...

其中命名使用的参数列表

 %p - insert pid into filename # 添加 pid  %u - insert current uid into filename # 添加当前 uid  %g - insert current gid into filename # 添加当前 gid  %s - insert signal that caused the coredump into the filename # 添加导致产生 core 的信号  %t - insert UNIX time that the coredump occurred into filename # 添加 core 文件生成时的 unix 时间  %h - insert hostname where the coredump happened into filename # 添加主机名  %e - insert coredumping executable name into filename # 添加命令名

/proc/sys/kernel/core_uses_pid 这个文件的值若为1,则无论时候配置 %p ,最后生成的 core 文件都会添加 pid

调试方法

可以使用 gdb 对 core 文件进行调试,编译是需要带上 -g 选项

 $ gdb a.out ... (gdb) core-file core ... (gdb) bt  ...

如需要在 PC 上调试嵌入式设备产生的 core 文件,则需要选取相应平台的 gdb 工具,并在进入 gdb 后设置符号文件的位置

 $ xxx-xxx-gdb a.out ... (gdb) solib-search-path xxx.so:xxx.so ... (gdb) core-file core ... (gdb) bt ...