Linux core 文件介紹

1. core文件的簡單介紹
在一個程序崩潰時,它通常會在指定目錄下生成一個core文件。core文件僅僅是一個內存映象(同時加上調試信息),主要是用來調試的。shell

2. 開啓或關閉core文件的生成
用如下命令來阻止系統生成core文件:
ulimit -c 0
下面的命令能夠檢查生成core文件的選項是否打開:
ulimit -a
該命令將顯示全部的用戶定製,其中選項-a表明「all」。bash

也能夠修改系統文件來調整core選項
在/etc/profile一般會有這樣一句話來禁止產生core文件,一般這種設置是合理的:
# No core files by default
ulimit -S -c 0 > /dev/null 2>&1
可是在開發過程當中有時爲了調試問題,仍是須要在特定的用戶環境下打開core文件產生的設置
在用戶的~/.bash_profile里加上ulimit -c unlimited來讓特定的用戶能夠產生core文件
若是ulimit -c 0 則也是禁止產生core文件,而ulimit -c 1024則限制產生的core文件的大小不能超過1024kbapp

3. 設置Core Dump的核心轉儲文件目錄和命名規則
/proc/sys/kernel/core_uses_pid能夠控制產生的core文件的文件名中是否添加pid做爲擴展,若是添加則文件內容爲1,不然爲0
/proc/sys/kernel/core_pattern能夠設置格式化的core文件保存位置或文件名,好比原來文件內容是core-%e
能夠這樣修改:
echo "/corefile/core-%e-%p-%t" > /proc/sys/kernel/core_pattern
將會控制所產生的core文件會存放到/corefile目錄下,產生的文件名爲core-命令名-pid-時間戳
如下是參數列表:
    %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 添加命令名ide

4. 使用core文件
在core文件所在目錄下鍵入:
gdb -c core
它會啓動GNU的調試器,來調試core文件,而且會顯示生成此core文件的程序名,停止此程序的信號等等
若是你已經知道是由什麼程序生成此core文件的,好比MyServer崩潰了生成core.12345,那麼用此指令調試:
gdb -c core MyServer
如下怎麼辦就該去學習gdb的使用了學習

5. 一個小方法來測試產生core文件
直接輸入指令:
kill -s SIGSEGV $$測試

6. 爲什麼有時程序Down了,卻沒生成 Core文件。ui

Linux下,有一些設置,標明瞭resources available to the shell and to processes。 可使用this

#ulimit -a 來看這些設置。 (ulimit是bash built-in Command)unix

             -a     All current limits are reported
              -c     The maximum size of core files created
              -d     The maximum size of a process鈥檚 data segment
              -e     The maximum scheduling priority ("nice")
              -f     The maximum size of files written by the shell and its children
              -i     The maximum number of pending signals
              -l     The maximum size that may be locked into memory
              -m     The maximum resident set size (has no effect on Linux)
              -n     The maximum number of open file descriptors (most systems do not allow this value to be set)
              -p     The pipe size in 512-byte blocks (this may not be set)
              -q     The maximum number of bytes in POSIX message queues
              -r     The maximum real-time scheduling priority
              -s     The maximum stack size
              -t     The maximum amount of cpu time in seconds
              -u     The maximum number of processes available to a single user
              -v     The maximum amount of virtual memory available to the shell
              -x     The maximum number of file locks調試

從這裏能夠看出,若是 -c是顯示:core file size          (blocks, -c)

若是這個值爲0,則沒法生成core文件。因此可使用:

#ulimit -c 1024 或者 #ulimit -c unlimited 來使能 core文件。

若是程序出錯時生成Core 文件,則會顯示Segmentation fault (core dumped)。

7. Core Dump的核心轉儲文件目錄和命名規則: /proc/sys/kernel/core_uses_pid能夠控制產生的core文件的文件名中是否添加pid做爲擴展,若是添加則文件內容爲1,不然爲0

相關文章
相關標籤/搜索