How To Install satyr on CentOS 8
Introduction
In this tutorial we learn how to install satyr
on CentOS 8.
What is satyr
Satyr is a library that can be used to create and process microreports. Microreports consist of structured data suitable to be analyzed in a fully automated manner, though they do not necessarily contain sufficient information to fix the underlying problem. The reports are designed not to contain any potentially sensitive data to eliminate the need for review before submission. Included is a tool that can create microreports and perform some basic operations on them. satyr 0.26 2.el8 x86_64 114 k satyr-0.26-2.el8.src.rpm appstream Tools to create anonymous, machine-friendly problem reports https GPLv2+ Satyr is a library that can be used to create and process microreports. Microreports consist of structured data suitable to be analyzed in a fully automated manner, though they do not necessarily contain sufficient information to fix the underlying problem. The reports are designed not to contain any potentially sensitive data to eliminate the need for review before submission. Included is a tool that can create microreports and perform some basic operations on them.
We can use yum
or dnf
to install satyr
on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install satyr.
Install satyr 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 satyr
using dnf
by running the following command:
sudo dnf -y install satyr
Install satyr 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 satyr
using yum
by running the following command:
sudo yum -y install satyr
How To Uninstall satyr on CentOS 8
To uninstall only the satyr
package we can use the following command:
sudo dnf remove satyr
satyr Package Contents on CentOS 8
/usr/bin/satyr
/usr/lib/.build-id
/usr/lib/.build-id/21
/usr/lib/.build-id/21/f6928ae0dcae306d7b6c41a205fb5d2ffefe9f
/usr/lib/.build-id/a1
/usr/lib/.build-id/a1/31a1554aad24fc279e2f2950775c533b2a65a5
/usr/lib/libsatyr.so.3
/usr/lib/libsatyr.so.3.0.0
/usr/share/doc/satyr
/usr/share/doc/satyr/NEWS
/usr/share/doc/satyr/README
/usr/share/licenses/satyr
/usr/share/licenses/satyr/COPYING
/usr/share/man/man1/satyr.1.gz
/usr/bin/satyr
/usr/lib/.build-id
/usr/lib/.build-id/7a
/usr/lib/.build-id/7a/08bf95e7d665071aef8adbad81ba63130471cb
/usr/lib/.build-id/9a
/usr/lib/.build-id/9a/97b147fa87bf91fffee6dc246406b005b85285
/usr/lib64/libsatyr.so.3
/usr/lib64/libsatyr.so.3.0.0
/usr/share/doc/satyr
/usr/share/doc/satyr/NEWS
/usr/share/doc/satyr/README
/usr/share/licenses/satyr
/usr/share/licenses/satyr/COPYING
/usr/share/man/man1/satyr.1.gz
References
- [satyr website](https://github.com/abrt/satyr https://github.com/abrt/satyr)
Summary
In this tutorial we learn how to install satyr
on CentOS 8 using yum and dnf.