Disabling error-reporting is not a desirable solution!
Ubuntu has an error reporting system called apport which tries to catch all program crashes in the background and report them to help the developers.
It seems that after a dist-upgrade there are stuck some reports that are tried to be resubmitted somehow, but disabling apport is not a desirable solution.
Remove old crash-reports
Open a terminal and remove all old crash-reports that might exist in the crash-report directory:
1 2 |
sudo rm /var/crash/* |
After a reboot the popups are gone.
If you don’t want to reboot, you can close all open popups with:
1 2 |
killall system-crash-notification |
(Any further new pop-ups still should be investigated. If you want to see the details,
look in /var/crash/
for any new reports)
Ref : http://askubuntu.com/a/369297