linux下設定coredump檔案的開關和路徑

2021-07-29 09:32:43 字數 860 閱讀 5162

ulimit -c unlimited 不限制生成core檔案大小

ulimit -c

0 關閉core檔案生成開關

ulimit -c

1024 限定生成core檔案的大小為1024

/proc/sys/kernel/core_uses_pid 1 表示使用procid命名,0表示不使用

/proc/sys/kernel/core_pattern 可以設定格式化的 core 檔案儲存位置或檔名

echo 「/opt/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 時間

%e - insert coredumping executable name into filename 新增命令名

Linux下設定網絡卡

linux下設定網絡卡的速率和模式 mii tool f 100basetx fd eth0 把網絡卡eth0設定為100m的全雙工模式 還可以用 ethtool ethtool s eth0 speed 100 duplex full autoneg on 檢視機器上的網絡卡裝置 lspci 檢視...

Linux下設定時間

提供兩種最根本有效的方式,就是更改時區。這裡以更改為國內上海時間例子,其他地方時區同理。備份檔案 mv etc localtime etc localtime.bak 複製時區檔案 cp usr share zoneinfo asia shanghai etc localtime 這裡選擇了亞洲下的...

Linux下設定任務排程

1.編寫乙個簡單的shell命令,生成sh檔案 vi mytask.sh date home yanglei031 aa.txt cp home yanglei031 aa.txt home youyou 2.使用crontab生成任務排程 crontab e 編輯任務排程內容 sh home ya...