vote up 7 vote down star
2

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?

flag

3 Answers

vote up 14 vote down check

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
link|flag
Do you know how to do this in tcsh? – Nathan Fellman Nov 16 '08 at 12:51
I've updated my answer to include a tcsh example – Eli Courtwright Nov 17 '08 at 22:22
vote up 2 vote down

By default you will get a core file. Check to see that the current directory of the process is writable, or no core file will be created.

link|flag
By "current directory of the process" do you mean the $cwd at the time the process was run? ~/abc> /usr/bin/cat def if cat crashes, is the current directory in question ~/abc or /usr/bin? – Nathan Fellman Apr 30 at 7:52
~/abc. Hmm, comments have to be 15 characters long! – Mark Harrison May 1 at 14:56
vote up 0 vote down

What I did at the end was attach gdb to the process before it crashed, and then when it got the segfault I executed the generate-core-file command. That forced generation of a core dump.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.