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,304 times
5
Eliah Kagan
- 116,445
- 54
- 318
- 493
sunny
- 327
- 1
- 4
- 5
-
By fully-updated, its 12.04.2, right? 'coz there are a lot of bug fixes in 12.04.2. – jobin Feb 25 '13 at 11:29
-
stop the still-running apport service:`sudo stop apport` after deleting crash and doing @Ian's answer. – αғsнιη Sep 22 '14 at 10:30
-
I read your question and sudo rm /var/crash/* solved my problem. The problem started to happen after I could not wake up my laptop from hibernate and did a cold reboot. – atmelino Apr 30 '15 at 01:37
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
- 77,204
- 56
- 214
- 254
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
enabledfrom1to0. - 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 Sadigov
- 7,139
- 6
- 25
- 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
-