Finding Ubuntu Crash Reports

This post is more an aide-mémoire for myself, but may be useful to others.

I recently wrote a little story about bugs, the crash reporter and errors website in Ubuntu. Sometimes a user will want to look for their crash reports, and in fact that question came up today on the Ubuntu Discourse.

Back when we shipped Unity desktop as the default desktop environment in Ubuntu, there was a simple button to take a user to their previously uploaded crash reports. There was also an easy, graphical way to disable crash reporting.

I say was in the past tense, but Unity still exists in the Ubuntu repository. Indeed there’s even a revived Ubuntu Unity Remix. So those of us who prefer Unity can still run it, despite it not getting a lot of new development or maintenance since 2017.

In fact on my ThinkPad X220 I have Unity installed on the Ubuntu 21.10 release, which still performs very nicely.

Unity

The settings dialog has the “Show Previous Reports” button I mentioned above.

Privacy settings

This takes the user to a web page at errors.ubuntu.com showing errors from their PC only. Here’s what it looks like for me on my X220.

Errors

Note: clicking through to the details for any crash is limited to a small set of bug triage developers.

In the transition from Unity to GNOME Shell in late 2017, this option was lost, or rather, never implemented anywhere in GNOME Control Center.

However, it’s easy to find the reports for your own PC, whatever the desktop, with a simple command. This takes the unique system ID and adds it on the end of the url to the errors site and launches your default browser.

xdg-open https://errors.ubuntu.com/user/$(sudo cat /var/lib/whoopsie/whoopsie-id)

Here’s what that looks like from my Ubuntu Hirsute (21.04) system.

Crashes

Hope that’s helpful to someone. Maybe I’ll remember it next time I’m trying to find my crashes too! :D