How To Install airtsp on Rocky Linux 8
Introduction
In this tutorial we learn how to install airtsp
on Rocky Linux 8.
What is airtsp
airtsp aims at providing a clean API and a simple implementation, as a C++ library, of an Airline Schedule Management System. It is intended to be used in simulated environments only in the real-world of Airline IT operations. airtsp makes an extensive use of existing open-source libraries for increased functionality, speed and accuracy. In particular the Boost (C++ Standard Extensions Install the airtsp package if you need a library of basic C++ objects for Airline Schedule Management, mainly for simulation purpose.
We can use yum
or dnf
to install airtsp
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install airtsp.
Install airtsp 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 airtsp
using dnf
by running the following command:
sudo dnf -y install airtsp
Install airtsp 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 airtsp
using yum
by running the following command:
sudo yum -y install airtsp
How To Uninstall airtsp on Rocky Linux 8
To uninstall only the airtsp
package we can use the following command:
sudo dnf remove airtsp
airtsp Package Contents on Rocky Linux 8
/usr/bin/airtsp
/usr/lib/.build-id
/usr/lib/.build-id/38
/usr/lib/.build-id/38/08f76b94bcf02109b3212534d7aecc0ab4e353
/usr/lib/.build-id/a6
/usr/lib/.build-id/a6/da69e8a97bcef608d84b0d540508330ff66653
/usr/lib64/libairtsp.so.1.01
/usr/lib64/libairtsp.so.1.01.5
/usr/share/doc/airtsp
/usr/share/doc/airtsp/AUTHORS
/usr/share/doc/airtsp/COPYING
/usr/share/doc/airtsp/ChangeLog
/usr/share/doc/airtsp/NEWS
/usr/share/doc/airtsp/README.md
/usr/share/man/man1/airtsp.1.gz
References
Summary
In this tutorial we learn how to install airtsp
on Rocky Linux 8 using yum and dnf.