How to Disable Apport Error Reporting in Ubuntu 16.04 LTS
Ubuntu comes preloaded with a program named apport
which automatically generate error reporting. It helps Canonical develop better software for the user.
Today, I was installing LEMP stack on my local Ubuntu 16.04 machine. An error occurred during the Nginx installation and a window pops up telling me that system program problem detected.
I already knew where the problem is and how to fix it. It’s because Apache web server is installed and running on my Ubuntu 16.04 box so Nginx can’t use port 80. To fix this issue, I just have to stop Apache web server and install Nginx again.
sudo systemctl stop apache2
Disable Apport Error Reporting
There are so many Ubuntu desktop users out there. Often times, your problem has already been reported. And sometimes, like in my case, you already know how to fix the problem. So there’s really no need for you to report again to Ubuntu developers.
To disable error reporting on Ubuntu 16.04, fire up a terminal window (CTRL+ALT+T
) and run the following command to open the apport
configuration file.
sudo nano /etc/default/apport
You will see a line enabled=1
. To disable error reporting, change the value of enabled from 1 to 0.
Press CTRL+O
to save the file. CTRL+X
to exit out of the file. And you are done! You won’t see error pop up any more!
You may also want to disable the apport service.
sudo systemctl disable apport
Or completely remove apport program from your system.
sudo apt purge apport
Enable Apport Error Reporting
If for any reason you want to enable the reporting service, run:
sudo apt install apport sudo systemctl start apport
And then make sure the value of enabled
is set to 1
in /etc/default/apport
configuration file.
Check Error Reports Sent from Your Ubuntu System
Go to System Settings
> security & Privacy > Diagnostics
.
Click Show Previous Reports
.
You will be taken to a Ubuntu website page which contains all errors reports sent from your Ubuntu system.
That’s it! I hope this article helped you disable or enable Ubuntu bug report. As always, if you found this post useful, then subscribe to our free newsletter or follow us on Google+, Twitter or like our Facebook page. Thanks for visiting!
Sir.. My Account is disabled my account Name(your name) has been Community disable.Sir i’m sure i didn’t break your rules and regulations and i respect you and your comunnity guidelins, sir i’m sure you have made a mistake please sir i request you please review my account again and reopen my facebook account as well as soon possible becouse sir i have linked my account other social media plateform like (pubg mobile,instagram,) and many apps which i downloaded from playstore i remember i followed your all rules and regulations but still my account was disabled.
Please sir review my id faster and please update your report system.
Account name
(your name)
Sumit Singh Thathola
Gmail
[email protected]
Date Of Birth
23/9/1999
I don’t remember I disabled your account in the community forum. Just create a new account.
PS: Please don’t show your government ID on the Internet. If you need to show it to me, send me an email instead of posting it online. I just removed your attachment for your privacy.
Yay! Worked for me!