How to generate a core dump in Linux on a segmentation fault?

Nathan Fellman picture Nathan Fellman · Aug 20, 2008 · Viewed 371.1k times · Source

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?

Answer

Eli Courtwright picture Eli Courtwright · Aug 20, 2008

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 this shouldn't be necessary since the size of core files will probably never be an issue for you.

In tcsh, you'd type

limit coredumpsize unlimited