Fedora 12 gcc 4.4.1

I am doing some programming, and my program gave me a stack dump.

However, there is no core file for me to examine.

So I did:

ulimit -c unlimited

and got this error message:

bash: ulimit: core file size: cannot modify limit: Operation not permitted

I also tried setting ulimit to 50000 and still got the same error.

The results of ulimit -a:

$ ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 12275
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 10240
cpu time               (seconds, -t) unlimited
max user processes              (-u) 1024
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Grep for a hard limit setting in your bash initialization files. From the bash man page.

A hard limit cannot be increased once it is set; a soft limit may be increased up to the value of the hard limit.

The hard limit is set via the ulimit -H flag. It may be set in /etc/bash* or /etc/profile* files. Look for a ulimit -Hc setting.

link|improve this answer
feedback

This is obviously a bit late, but for anyone else who stumbles across this page, I found this link had all the answers I needed: http://www.akadia.com/services/ora_enable_core.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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