Translations:Development/FAQs/Debugging FAQ/11/en
Once you have a core file for a crash, you can examine it with gdb appname core . This will open gdb on the core file for the given application. Once at the gdb prompt, the most useful command is bt
which generates a backtrace of the crash.
For more information about how to use gdb, see this page