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