🔧 How to Disable “System program problem detected” in Ubuntu (and Enable It Again)
What does “System program problem detected” mean in Ubuntu?
The message “System program problem detected” appears when Ubuntu’s crash reporting tool Apport detects a software crash.
While useful for debugging, the message may repeatedly appear even after the issue is resolved. Many users choose to disable it.
SEO keywords (English):
- system program problem detected ubuntu
- disable system program problem detected
- ubuntu error message fix
- disable apport ubuntu
✅ How to DISABLE “System program problem detected” in Ubuntu
Step 1: Open the terminal
Press Ctrl + Alt + T
Step 2: Edit the Apport configuration file
sudo nano /etc/default/apport
Step 3: Disable Apport
Change:
enabled=1
to:
enabled=0
Step 4: Save the file
- Press Ctrl + O, then Enter
- Press Ctrl + X
Step 5: Stop the Apport service (optional)
sudo systemctl stop apport.service
🎉 The error message is now disabled.
🔄 How to ENABLE “System program problem detected” again
Step 1: Open the configuration file
sudo nano /etc/default/apport
Step 2: Enable Apport
Change:
enabled=0
to:
enabled=1
Step 3: Save and exit
- Ctrl + O → Enter
- Ctrl + X
Step 4: Start Apport
sudo systemctl start apport.service
✅ Crash reporting is enabled again.
🧹 Optional: Remove old crash reports
sudo rm /var/crash/*
📌 Conclusion
The “System program problem detected” message in Ubuntu is harmless but annoying.
Disabling Apport via the terminal is the easiest permanent solution—and you can always re-enable it when needed.
