Remove “System Program Problem Detected” Messages From Ubuntu

One of my Ubuntu systems would pop up the following message multiple times after logging in:

System program problem detected

Do you want to report the problem now?

It was really annoying as simply closing the messages would cause them to return after a reboot.

This was happening due to a number of files in the /var/crash/ directory. After removing these, the problem went away. I did so from the command line as follows:

[[email protected] ~]$ sudo rm /var/crash/*
[[email protected] ~]$ 

While the idea of a crash report helping fix problems is nice, I really question whether they are that valuable. Personally, I’d rather never have to deal with them.

To ensure that I never have to deal with them again, I disabled the apport service that is responsible for generating these crash reports.

To disable the service, first edit the /etc/default/apport file:

[[email protected] ~]$ gksu gedit /etc/default/apport
# 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

Then change enabled=1 to enabled=0:

# 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

Save and close the file.

Finally, stop the still-running apport service:

[[email protected] ~]$ sudo stop apport
apport stop/waiting
[[email protected] ~]$ 

http://chrisjean.com/2014/03/19/fix-system-program-problem-detected-messages-from-ubuntu/

Remove “System Program Problem Detected” Messages From Ubuntu,布布扣,bubuko.com

时间: 2024-10-17 15:19:34

Remove “System Program Problem Detected” Messages From Ubuntu的相关文章

关闭 ubuntu System program problem detected

关闭 ubuntu System program problem detected 小编使用的系统是Ubuntu 14.0.4,最近不知什么原因,每次开机都出现: System program problem detected 很麻烦,关闭方法: vim /etc/default/apport # set this to 0 to disable apport, or to 1 to enable it # you can temporarily override this with # sud

Ubuntu System Program Problem Detected

每次ubuntu系统启动总会报System Program Problem Detected而且也没啥报错详细信息,ubuntu下可关闭apport. 方法如下: vim /etc/default/apport enabled=1   改成0即可 PS:也可清空/var/crash目录下的cash文件. Ubuntu System Program Problem Detected

怎样关掉 ubuntu 中的 System Program Problem Detected 提示框

怎样关掉 ubuntu 中的 System Program Problem Detected 提示框 方法如下:sudo gedit /etc/default/apport  打开该文件如下:# 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=1enabled=1 将 enable

Ubuntu每次启动都显示System program problem detected的解决办法

每次启动Ubuntu都显示System program problem detected,很烦人,不过修改一个文件就可以. 执行命令: sudo gedit /etc/default/apport 将enabled=1改为enabled=0保存退出即可 原文地址:https://www.cnblogs.com/long5683/p/10464282.html

〖Linux〗Kubuntu KDE开机后总是提示“system program problem detected”的解决方法

自从从Ubuntu切换到了Kubuntu之后,就经常在开机的时候提示“system program problem detected”: 查看 /var/crash/ 发现都是一些无关痛痒的程序在关机的过程时出现的崩溃: ll /var/crash/ total 11M -rw-r----- 1 root whoopsie 21K Dec 3 22:41 susres.2014-12-03_22:41:22.388629.crash -rw-r----- 1 scue whoopsie 3.2M

buntu System Program Problem Detected解决

每次ubuntu系统启动总会报System Program Problem Detected而且也没啥报错详细信息,ubuntu下可关闭apport.方法如下: 方法一: 1 2 sudo vim /etc/default/apport enabled=1 改成 0 方法二: 有两种方案可以解决: (1)暂时解决的办法,该命令是暂时删除系统中所有的旧的临时文件,在终端输入: sudo rm -rf /var/crash (2)永久删除: sudo sed -i 's/enabled=1/enab

如何关闭linux(ubuntn)中的"System Program Problem Detected"提示

安装了linux(ubuntn)后, 老是提示"System Program Problem Detected", 经常以为是安装什么程序又出错了, 很烦, 于是到网上找了一些办法, 在这里留个记录, 以备不时之需! 1.(亲测) 每次开机都会出现这个提示,可以通过以下方法关闭(打开终端, 输入以下命令): sudo vi /etc/default/apport 将"enabled"从1改为0并保存即可,下次开机就不会出现了 出处: http://blog.csdn

System program problem detected 解决

每次开机都出现:System program problem detected 管理员权限打开:/etc/default/apport su root vim /etc/default/apport # 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 把

An Easy C Program Problem

A Easy C Program Problem 标签(空格分隔): 学习 C 找幸运数 题目描述 数字8最多的那个数为幸运数. 输入n和n个整数,找这n个数中的幸运数.在主函数中调用ndigit函数,判断某个整数x含数字8的个数.如果有多个幸运数输出第一个幸运数,如果所有的数中都没有含数字8,则输出NO. 函数int ndigit(int n,int k)功能:统计整数n中含数字k的个数. 输入描述 输入n个n个整数 输出描述 幸运数 输入样例 5 568 567 328 48768 8688