<< Back

Disable Error Reporting In Ubuntu

Posted on Thursday 26th October 2017

Error Reporting Photo

Be warned, Error Reporting is there to inform you when something is wrong, only continue if you accept any risk of doing so

16.04 and Above

systemd ignores the Apport Config file, so we need to manage it with systemd.

Disable

sudo systemctl disable apport.service
systemctl mask apport.service

Re Enable

systemctl unmask apport.service
sudo systemctl enable apport.service

Previous Ubuntu Versions

Prior to to the introduction if systemd, we can enable / disable apport using its Config File.

sudo nano /etc/default/apport/

Then we need to change the enabled flag

Enable

enabled=1

Disable

enabled=0

Removing Apport

You also now have the option to Remove the Apport Program.

Remove

sudo apt purge apport

Reinstall

sudo apt install apport