Created
September 28, 2017 16:20
-
-
Save xlanor/9f6096bee849a18c81a1b4fc10075a36 to your computer and use it in GitHub Desktop.
Fedora 26 - Disable abrt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ABRT was spamming my fedora system with updates nonstop. | |
sudo systemctl -t service | grep abrt | |
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 |
Gosh, how linux developers can allow that? it was constantly sending core dumps creating congestion and cpu resources.
thanks!
Thank you! My coredumpctl list -r
was filled with Mon 2020-01-13 17:25:41 CET 16067 59 59 5 error /usr/sbin/tpm2-abrmd
and alike before.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very nice. thanks