Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

The system crash dialog is annoying me, how can I turn it off? I'd also like to know how to turn it back on just in case I need it to report a problem.

share|improve this question

3 Answers

up vote 62 down vote accepted

you need to edit /etc/default/apport

# Graphical
gksu gedit /etc/default/apport

or

# Command line
sudo nano /etc/default/apport

Change enabled from "0" to a "1" so it looks like this:

enabled=1    

To turn it off make it:

enabled=0

to turn it off at boot, and then turn it off with a sudo service apport stop

See also :

share|improve this answer
  • Click on ubuntu icon, search for "System settings"
  • Select Privacy > Diagnostics tab
  • Unlock
  • Tick "Send error reports to Canonical"

Ubuntu 12.04 > Privacy > Diagnostics tab > Send error reports to Canonical

share|improve this answer
1  
This didn't seem to do anything for me, still getting system error pop ups. – xamox Oct 11 '12 at 18:53
sudo service apport stop ; sudo sed -ibak -e s/^enabled\=1$/enabled\=0/ /etc/default/apport ; sudo mv /etc/default/apportbak ~

The above script should stop apport, then take a backup of its configuration file, disable apport on boot, and lastly moves the backup to your home directory

HTH

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.