How To Install satyr on Rocky Linux 8
Introduction
In this tutorial we learn how to install satyr
on Rocky Linux 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.
We can use yum
or dnf
to install satyr
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install satyr.
Install satyr on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install satyr
using dnf
by running the following command:
sudo dnf -y install satyr
Install satyr on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
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 Rocky Linux 8
To uninstall only the satyr
package we can use the following command:
sudo dnf remove satyr
satyr Package Contents on Rocky Linux 8
/usr/bin/satyr
/usr/lib/.build-id
/usr/lib/.build-id/15
/usr/lib/.build-id/15/39f62a516804f7af2c5695f7297d335082b743
/usr/lib/.build-id/34
/usr/lib/.build-id/34/9b429a947768268ca4308dc13abfd5315cdbbf
/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
/usr/bin/satyr
/usr/lib/.build-id
/usr/lib/.build-id/bd
/usr/lib/.build-id/bd/b9d95ff80a706991ddf6bf3695a541f1fd5dc2
/usr/lib/.build-id/eb
/usr/lib/.build-id/eb/b2cccea37ea2b4dffc151c38424ee0a8e45a3f
/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
References
Summary
In this tutorial we learn how to install satyr
on Rocky Linux 8 using yum and dnf.