Ubuntu’s apport
service is less then helpful for developers — learn how to disable it.
I’m not sure quite when it appeared, but Ubuntu 12.04 has a service called apport
which is a bit of a pain.
It’s started by default and appears to attempt to collect crash dump information, presumably to send back to Ubuntu. I’ve seen little notification icons appearing at one time or another which I assume is this service doing its job. I’m not going to get into the potential privacy implications of sending core dumps of possibly commercial third party software (the rest of the system may filter the core dumps, I’m not sure), but if you’re a developer trying to get hold of core dumps this is annoying. I discovered this application when trying to figure out where my core dumps were disappearing to.
What happens is that the Upstart job for the service alters the value of /proc/sys/kernel/core_pattern
, which changes where core dump files are stored, to pipe the core dump into /usr/share/apport/apport
, which is a Python script. This script attempts to write the core dump to the local directory first, and then writes an annotated copy elsewhere, which is presumably picked up by some other background job which puts cutesy little exclamation marks into the notification area or something similar.
In principle, this isn’t all that terrible — after all, general users wouldn’t know a core dump if it bit them on the rear (and you really wouldn’t want a dump biting you in the rear). However, one rather crucial problem is that it ignores any previously set value of core_pattern
and simply dumps its own value over it. The script always attempts to dump the core file into the current directory, regardless of the old value of core_pattern
.
This is a bit of an issue because I use union mounts for building software, to avoid cluttering up my source directories with build artifacts, and these often confuse the kernel when it tries to generate core dumps. As a result, I change core_pattern
to the following to store all core dumps in a central location:
/var/log/cores/core.%e.%p
This worked fine until I rebooted for some reason and suddenly apport
stuck its ugly nose in.
Anyway, fortunately it’s pretty easy to disable. First edit /etc/default/apport
and set enabled
to 0
:
1 2 3 4 |
|
Then, just stop the service:
sudo service apport stop
At this point you’ll want to check that it’s restored the value of core_pattern
to something sensible, and update it yourself if not.
That’s one more developer annoyance in Ubuntu taken care of.