How To Install abrt-addon-xorg on CentOS 8

abrt-addon-xorg is abrt’s Xorg addon

Introduction

In this tutorial we learn how to install abrt-addon-xorg on CentOS 8.

What is abrt-addon-xorg

This package contains plugin for collecting Xorg crash information from Xorg log.

We can use yum or dnf to install abrt-addon-xorg on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install abrt-addon-xorg.

Install abrt-addon-xorg on CentOS 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install abrt-addon-xorg using dnf by running the following command:

sudo dnf -y install abrt-addon-xorg

Install abrt-addon-xorg on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install abrt-addon-xorg using yum by running the following command:

sudo yum -y install abrt-addon-xorg

How To Uninstall abrt-addon-xorg on CentOS 8

To uninstall only the abrt-addon-xorg package we can use the following command:

sudo dnf remove abrt-addon-xorg

abrt-addon-xorg Package Contents on CentOS 8

/etc/libreport/events.d/xorg_event.conf
/etc/libreport/plugins/catalog_xorg_format.conf
/usr/bin/abrt-dump-journal-xorg
/usr/bin/abrt-dump-xorg
/usr/lib/.build-id
/usr/lib/.build-id/09
/usr/lib/.build-id/09/4c72d5265fa843aa56bed527aa7aa4239f5462
/usr/lib/.build-id/c0
/usr/lib/.build-id/c0/2d4e6f8b896f90a2b858e48088e3674ac57a91
/usr/lib/systemd/catalog/abrt_xorg.catalog
/usr/lib/systemd/system/abrt-xorg.service
/usr/share/man/man1/abrt-dump-journal-xorg.1.gz
/usr/share/man/man1/abrt-dump-xorg.1.gz
/usr/share/man/man5/xorg_event.conf.5.gz

References

Summary

In this tutorial we learn how to install abrt-addon-xorg on CentOS 8 using yum and dnf.