Daily linux news and tutorial

Fix and remove notification "system program problem detected" ubuntu

this problem usually happen after update your ubuntu or system upgrade, “System Program Problem Detected” notification messages would pop up multiple times after logging in. this because of file crash in /var/crash open terminal and type : fix system program problem detected ubuntu

 cd /var/crash
ls

Removing these files
sudo rm /var/crash/* 
Reboot
at this step notification "system program problem detected ubuntu" solved. to prevent this problem happen again we need to turn off apport service. So, edit the configuration file at /etc/default/apport. type these:
gksudo gedit /etc/default/apport
The file would contain something like this
# set this to 0 to disable apport, or to 1 to enable it
# you can temporarily override this with
# sudo service apport start force_start=1
enabled=1
Set the value of enabled to 0, and this will disable apport.
it has to be like this one:
# set this to 0 to disable apport, or to 1 to enable it
# you can temporarily override this with
# sudo service apport start force_start=1
enabled=0
close the file, (make sure it saved before you closing the file).
now error notification "system program problem detected" should be solved and it wouldn't appear again.

linuxlinx.com

Linuxlinx

Recent Posts