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?
Asked
Active
Viewed 8,314 times
5

Eliah Kagan
- 117,780

sunny
- 327
3 Answers
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
- 78,556

Mahfuz
- 111
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
from1
to0
. - Save and exit. Reboot.
-
2Welcome to Ask Ubuntu. While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Peachy Sep 24 '12 at 05:35
-
2
-
2Simply disabling apport doesn't solve the problem. It's just a workaround and potentially harmful one. – int_ua Nov 08 '13 at 10:28
-
@Dr_Bunsen: Although about two years and three months later, would you like to say how to actually solve this problem or at least mention the problem's source? Additionally, in Ubuntu 15.04? – ashubuntu May 19 '15 at 12:12
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,329
- 6
- 26
- 34
-
2You should add the steps required to solve the problem. Then you can mention the source. – green Apr 14 '13 at 12:07
-
-
1
-
sudo stop apport
after deleting crash and doing @Ian's answer. – αғsнιη Sep 22 '14 at 10:30