How to fix system program problem detected error on Ubuntu

Updated on March 21st 2023 – After upgrading to Ubuntu 14.04 (or older) you might have experienced this annoying problem. In this article, you will learn how to fix this issue once and for all. Let’s get started !

Read: How to fix Bluetooth connection issues on Ubuntu 22.04

What is this error about?

Basically, what’s happening is that your system is reminding you of a crash that happened before. Don’t worry though, it’s nothing major and it won’t affect your current system status. This is because one of your applications crashed earlier and the system wants you to let the developers know about it.

If you choose to click the Report button, you’ll still see the same issue and a popup will appear with the following message:

This is just the Apport which will let you file a bug report by creating (or logging in) an account with Launchpad.

Read: How to fix high memory usage in Linux

How to fix it then?

This is happening because of a crash that happened in the past. To find the related report, you can go to the /var/crash directory. Once there, you should be able to locate some files that end with “crash”. Here is an example output :

Your output might show a different reason though.

What you can do now is to completely delete the crash report files. To do so, proceed as follows :

To stop the annoying pop-up window, you can get rid of the old crash reports in the /var/crash directory. However, if another application crashes in the future, you may see the same pop-up again. To deal with this, you have two options. You can either delete the crash reports like we did earlier, or you can turn off Apport, which is the debug tool responsible for generating the pop-ups, to get rid of them permanently.

Now issue the command below to delete the crash reports :

sudo rm var/crash/*

Permanent solution

As we mentioned earlier, turning off Apport is a permanent solution, but it does have a downside. If you choose to do this, you will no longer receive notifications when an application crashes on your system. If you’re fine with that, then you can proceed with the following steps.

To disable Apport, you need to open up a terminal and run a command that will change the Apport settings file.

sudo nano /etc/default/apport

The content of the file is as shown below:

In the last line, change enabled=1 to enabled=0 .

Finally, save then quit and reboot your system .


If you like the content, we would appreciate your support by buying us a coffee. Thank you so much for your visit and support.

 

ziad nahdy

Ziad Nahdy, fan of open source and programming languages. He is a technical writer, blogger and Linux enthusiast. He loves to read and help others with their problems. He is addicted to open source software but he also loves other technology related subjects.

Leave a Reply