How to generate a core dump in Linux on a segmentation fault?
问题 I have a process in Linux that's getting a segmentation fault. How can I tell it to generate a core dump when it fails? 回答1: This depends on what shell you are using. If you are using bash, then the ulimit command controls several settings relating to program execution, such as whether you should dump core. If you type ulimit -c unlimited then that will tell bash that its programs can dump cores of any size. You can specify a size such as 52M instead of unlimited if you want, but in practice