How does one get a hold of the details regarding a system/application crash

Is there a way to generate a decent looking report with the /var/share/apport/*.crash files?

If not, how does one get a hold of the details regarding a past system error?

2 Answers

The apport-unpack command will output human readable files into a directory provided a .crash file and the name of a directory.

apport-unpack /var/crash/_usr_lib_gnome-settings-daemon_gnome-settings-daemon.1000.crash /home/surgemcgee/gnome_crash

And after you unpack it, run gdb to backtrace it.

gdb pathToYourBinaryWhichCrashed CoreDump

then:

bt

to see backtrace.

Note: CoreDump needs to be binary file in unpacked files directory from apport-unpack.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like