4

enter image description here

I am not sure what is causing this problem occurs every time at the start after booting.

Bug reported

https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1178564

  • 1
    How do you exactly close your machine? I experienced this when I closed it from terminal. – Radu Rădeanu May 09 '13 at 08:00
  • I shutdown in a normal way using the shutdown option bu choosing from the drop down on click of power button in the panel. I don't use terminal – Raghunandan May 09 '13 at 08:01

1 Answers1

4

Reason: Apport is a debugging tool that is used to generate crash reports. This was not enabled by default in previous versions of Ubuntu 12.04. To avoid this annoying pop-up, the Apport can be disabled by force. One drawback of doing it will be that you wont see the crash report but it is safe any ways as there is hardly any actual crash or error.

Solution: If you seem that there isn’t any errors in your system, you may want to disable this error/crash report notification. You can do this by disabling the Apport error report notification tool, following next steps:

  1. Press Ctrl+Alt+T to open a terminal and type the command: sudo -H gedit /etc/default/apport then press Enter to run the command.
  2. From here the text editor apport will show up, change the value from 1 to 0 for enable variable to disable the apport. Save and exit the editor, then restart the system.

apport

You can always re-enable it later on if you want, by changing "enabled" from "0" back to "1", or you can enable Apport temporarily, using the following command in a teminal:

sudo service apport start force_start=1

More resources: Apport - What is this all about?

Radu Rădeanu
  • 169,590