您好,登錄后才能下訂單哦!
Linux系統(tǒng)core文件的具體使用方法是什么,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
通常在 Linux 下遇到程序異常退出或者中止,我們都會(huì)使用 core 文件進(jìn)行分析,其中包含了程序運(yùn)行時(shí)的內(nèi)存,寄存器,堆棧指針等信息,格式為 ELF ,可以理解是程序工作當(dāng)前狀態(tài)轉(zhuǎn)儲(chǔ)成一個(gè)文件,通過(guò)工具分析這個(gè)文件,我們可以定位到程序異常退出或者終止時(shí)相應(yīng)的堆棧調(diào)用等信息,為解決問(wèn)題提供幫助。
生成方法
查看當(dāng)前 core 文件的狀態(tài)
$ ulimit -a ... -c: core file size (blocks) 0 # 關(guān)閉狀態(tài) ...
打開生成開關(guān)
ulimit -c unlimited ulimit -a ... -c: core file size (blocks) unlimited ...
對(duì) core 文件的大小進(jìn)行限制,單位為 blocks ,一般 1 block=512 bytes ,設(shè)置太小可能導(dǎo)致不會(huì)生成文件
$ ulimit -c 1024 $ ulimit -a ... -c: core file size (blocks) 1024 ...
關(guān)閉生成開關(guān)
ulimit -c 0 ulimit -a ... -c: core file size (blocks) 0 ...
上面對(duì) core 文件的操作僅對(duì)當(dāng)前生效,若需要永久生效,則要將相應(yīng)操作寫入 /etc/profile
生成路徑
core 文件默認(rèn)生成在程序的工作目錄,可以對(duì)生成路徑進(jìn)行設(shè)置,需要保證對(duì)對(duì)應(yīng)目錄有足夠空間并具有寫權(quán)限
echo` `/MyCoreDumpDir/core``.%e.%p > ``/proc/sys/kernel/core_pattern
其中命名使用的參數(shù)列表
%p - insert pid into filename # 添加 pid %u - insert current uid into filename # 添加當(dāng)前 uid %g - insert current gid into filename # 添加當(dāng)前 gid %s - insert signal that caused the coredump into the filename # 添加導(dǎo)致產(chǎn)生 core 的信號(hào) %t - insert UNIX time that the coredump occurred into filename # 添加 core 文件生成時(shí)的 unix 時(shí)間 %h - insert hostname where the coredump happened into filename # 添加主機(jī)名 %e - insert coredumping executable name into filename # 添加命令名
/proc/sys/kernel/core_uses_pid 這個(gè)文件的值若為1,則無(wú)論時(shí)候配置 %p ,最后生成的 core 文件都會(huì)添加 pid
調(diào)試方法
可以使用 gdb 對(duì) core 文件進(jìn)行調(diào)試,編譯是需要帶上 -g 選項(xiàng)
$ gdb a.out ... (gdb) core-file core ... (gdb) bt ...
如需要在 PC 上調(diào)試嵌入式設(shè)備產(chǎn)生的 core 文件,則需要選取相應(yīng)平臺(tái)的 gdb 工具,并在進(jìn)入 gdb 后設(shè)置符號(hào)文件的位置
$ xxx-xxx-gdb a.out ... (gdb) solib-search-path xxx.so:xxx.so ... (gdb) core-file core ... (gdb) bt ...
關(guān)于Linux系統(tǒng)core文件的具體使用方法是什么問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。