Skip to content
Advertisement

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?

Advertisement

Answer

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
Advertisement