Skip to main content

coreファイル関連

Linux

sh
# core 出力の設定/確認
ulimit -c unlimited # 設定
ulimit -a | grep core # 確認

# 動いてるプロセスに core を吐かせる
kill -6 <PID>