再起動時にデフォルトでコアダンプ生成を有効にしたいと思います。
実装する:
ulimit -c unlimited
端末では、コンピュータが再起動されるまで動作しているようです。
答え1
何か役に立つものを見つけたと思います。
というプログラムを使用しました。発射制御次の内容を含むenable core dumps.plist
atというファイルを作成します。/System/Library/LaunchDaemons
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>GroupName</key>
<string>wheel</string>
<key>InitGroups</key>
<true/>
<key>Label</key>
<string>core dumps launchctl</string>
<key>ProgramArguments</key>
<array>
<string>launchctl</string>
<string>limit</string>
<string>core</string>
<string>unlimited</string>
<string>unlimited</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>UserName</key>
<string>root</string>
</dict>
</plist>
次の権限があります。
$ ls -al enable\ core\ dumps.plist
-rw-r--r-- 1 root wheel 582 Dec 30 15:38 enable core dumps.plist
これは成功したようです:
$ launchctl limit core
core unlimited unlimited
$ ulimit -a core
core file size (blocks, -c) unlimited
...
<output snipped>
...
衝突が発生したばかりの小さなテストプログラムを作成しました。
$ ./a.out
Segmentation fault: 11 (core dumped)
見て、コアダンプが生成されます。
$ # ls -al /cores/
total 895856
drwxrwxr-t@ 3 root admin 102 Dec 30 15:55 .
drwxr-xr-x 31 root wheel 1122 Oct 18 10:32 ..
-r-------- 1 root admin 458678272 Dec 30 15:55 core.426
答え2
ulimit
永続シェル制限を適用するには、対応する起動シェルファイルにコマンドを追加する必要があります。
個人ユーザーの場合は、以下を使用するか、~/.bashrc
ファイル~/.bash_profile
を送信してください。
すべてのユーザーには、/etc/bashrc
次を使用します。
追加する提案された行:
# Changes the ulimit limits.
ulimit -Sn 4096 # Increase open files.
ulimit -Sl unlimited # Increase max locked memory.
システムリソース制限を変更するには、launchctl
次を参照してください。macOSでulimit設定を維持する方法は?