How To Install airtsp on CentOS 8
Introduction
In this tutorial we learn how to install airtsp
on CentOS 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 CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install airtsp.
Install airtsp 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 airtsp
using dnf
by running the following command:
sudo dnf -y install airtsp
Install airtsp 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 airtsp
using yum
by running the following command:
sudo yum -y install airtsp
How To Uninstall airtsp on CentOS 8
To uninstall only the airtsp
package we can use the following command:
sudo dnf remove airtsp
airtsp Package Contents on CentOS 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 CentOS 8 using yum and dnf.