DEV Community

RobbiNespu
RobbiNespu

Posted on β€’ Originally published at robbinespu.gitlab.io on

1

Disabling Fedora ABRT notification

I dont like ABRT because it spamming my fedora system notification. It kinda disturbing me, so because of the MCE ABRT notification keep spamming, I suggest to set OnlyFatalMCE = yes in /etc/abrt/plugins/oops.conf (you need root access to modify this file).

If needed, try to disable some ABRT related service. You can find it with this command

$ sudo systemctl -t service | grep abrt

for example, I got 4 systemd services:

abrt-journal-core.service loaded active running Creates ABRT problems from coredumpctl messages                              
abrt-oops.service loaded active running ABRT kernel log watcher                                                      
abrt-xorg.service loaded active running ABRT Xorg log watcher                                                        
abrtd.service

Now let stop it (for current session) and disable it (for next reboot)

$ sudo systemctl stop abrt-journal-core.service 
$ sudo systemctl disable abrt-journal-core.service

$ sudo systemctl stop abrt-oops.service
$ sudo systemctl disable abrt-oops.service

$ sudo systemctl stop abrt-xorg.service
$ sudo systemctl disable abrt-xorg.service

$ sudo systemctl stop abrtd.service
$ sudo systemctl disable abrtd.service

Now reboot your workstation. You should not getting anymore ABRT notification anymore.

Note: This my current step, it maybe incorrect πŸ˜› and I do not encourge you to disabling automatic problem reporting (ABRT) for no reason because ABRT is a set of tools to help you to detect and report crashes. It’s main purpose is to ease the process of reporting an issue and finding a solution.

Speedy emails, satisfied customers

Postmark Image

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay