5

I have Ubuntu 12.04 LTS, fully up-to-date. I'm new to Ubuntu. Whenever I start my system I face "System Program Problem Detected." Why is this happening? I ran sudo rm /var/crash/* but it again appears after some time. What could be at fault?

Eliah Kagan
  • 119,640
sunny
  • 327

3 Answers3

1

I am using Ubuntu 14.04 right now and faced the problem. It helped me. System Program Problem Detected

sudo sed -i 's/enabled=1/enabled=0/g' /etc/default/apport
Avinash Raj
  • 80,446
Mahfuz
  • 111
  • 1
0

You need to disable apport.

To do so, follow these steps:

  • Hit Alt+F2 and type gksu gedit /etc/default/apport.
  • Open the file and change the value of enabled from 1 to 0.
  • Save and exit. Reboot.

Source: http://www.prescottlinux.com/2012/linux-news/how-to-disable-system-program-problem-detected-errors-in-ubuntu-12-04-lts/

green
  • 14,406
Ian
  • 9
0

Open your terminal and type:

gksudo gedit /etc/default/apport

And hit Enter. Change the text "enabled=1" to "enabled-0". Then, save and exit.

To solve this problem, you can watch this YouTube video.

Ziyaddin Sadygly
  • 7,579
  • 6
  • 28
  • 34