How to Get Rid of Internal System Error Popups
Apport is a debugging tool that automatically generates crash reports and submit it. In Ubuntu 12.04 we have seen that we always get popups showing error message "Sorry, Ubuntu 12.04 has experienced an internal error." as shown in above picture. This is because Apport is enabled by default in the newest version of Ubuntu (Ubuntu 12.04). To get rid of this message we have to disable the Apport, especially since most of the time there is no visible error/crashes. To disable this message we have to edit /etc/default/apport file using this code
$sudo gedit /etc/default/apportand the change "enabled" from "1" to "0", and them save the file.
After completion the above steps Apport won't start after next reboots. But may be you also want to stop Apport in the current session only, you run the following command
$sudo service apport stopYou can also re-enable Apport by editing the same file again and changing "enabled" from "0" to "1".
Hope this will help.
Cheers
APaul
Comments
Post a Comment
Please dont forget to tell me if this post helped you or not...