Top "Coredump" questions

A core dump represents the state of working memory of a Unix program at a specific time, often when the program has terminated abruptly.

Is it possible to debug core dumps when using Java JNI?

My application is mostly Java but, for certain calculations, uses a C++ library. Our environment is Java 1.6 running on RedHat 3 (…

java c++ debugging java-native-interface coredump
How can I get the system time from a core dump?

I have a core dump generated after a segmentation fault. Is there a way in gdb ( or somehow else ) to …

c++ linux gdb segmentation-fault coredump
gdb weird backtrace

My program is statically compiled with dietlibc. It is compiled on ubuntu x64 (compiled for x86 using the -m32 flag) …

c gdb coredump backtrace
Is it possible to debug core file generated by a executable compiled without gdb flag?

Is it possible to debug core file generated by a executable compiled without gdb flag ? If yes, any pointers or …

unix coredump
Selective core dump in Linux - How can I select the dumped sections?

I am looking for a way to select the sections and memory regions included in a core dump. My application's …

linux memory coredump
AFL fuzzing without root - avoid modifying /proc/sys/kernel/core_pattern

I want to run the American Fuzzy Lop (AFL) fuzzer on a Linux system where I don't have root access. …

coredump american-fuzzy-lop
a.out replaced by ELF file format?

I have a few questions: Why was a.out replaced by ELF? What were the major flaws in the a.…

linux unix file-format elf coredump
How Do I run ulimit -c unlimited automatically

I am trying to provide support for coredump file generation from my rootfs ,I have modified /etc/limits file with "…

c linux coredump ulimit rootfs
Python server "Aborted (Core dumped)"

I use web.py to create a Python web server. This server is called to solve linear programming problems, and …

python c web.py linear-programming coredump