How To Install rmol on Fedora 34
Introduction
In this tutorial we learn how to install rmol
on Fedora 34.
What is rmol
rmol is a C++ library of Revenue Management and Optimisation classes and functions. Typically, that library may be used by service providers (e.g., airlines offering flight seats, hotels offering rooms, rental car companies offering rental days, broadcasting company offering advertisement slots, theaters offering seats, etc.) to help in optimizing their revenues from seat capacities. Most of the algorithms implemented are public and documented in the following book The Theory and practice of Revenue Management, by Kalyan T. Talluri and Garrett J. van Ryzin, Kluwer Academic Publishers, 2004, ISBN 1-4020-7701-7 rmol makes an extensive use of existing open-source libraries for increased functionality, speed and accuracy. In particular the Boost (C++ Standard Extensions Install the rmol package if you need a library of basic C++ objects for Airline Revenue Management (RM), mainly for simulation purpose. rmol 1.00.6 7.fc34 x86_64 199 k rmol-1.00.6-7.fc34.src.rpm fedora C++ library of Revenue Management and Optimisation classes and functions https LGPLv2+ rmol is a C++ library of Revenue Management and Optimisation classes and functions. Typically, that library may be used by service providers (e.g., airlines offering flight seats, hotels offering rooms, rental car companies offering rental days, broadcasting company offering advertisement slots, theaters offering seats, etc.) to help in optimizing their revenues from seat capacities. Most of the algorithms implemented are public and documented in the following book The Theory and practice of Revenue Management, by Kalyan T. Talluri and Garrett J. van Ryzin, Kluwer Academic Publishers, 2004, ISBN 1-4020-7701-7 rmol makes an extensive use of existing open-source libraries for increased functionality, speed and accuracy. In particular the Boost (C++ Standard Extensions Install the rmol package if you need a library of basic C++ objects for Airline Revenue Management (RM), mainly for simulation purpose.
We can use yum
or dnf
to install rmol
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install rmol.
Install rmol on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install rmol
using dnf
by running the following command:
sudo dnf -y install rmol
Install rmol on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install rmol
using yum
by running the following command:
sudo yum -y install rmol
How To Uninstall rmol on Fedora 34
To uninstall only the rmol
package we can use the following command:
sudo dnf remove rmol
rmol Package Contents on Fedora 34
/usr/bin/rmol
/usr/bin/rmol_drawBPC
/usr/bin/rmol_extractBPC
/usr/lib/.build-id
/usr/lib/.build-id/a5
/usr/lib/.build-id/a5/c2d0c3317321ee90ba48247f596da488bce1d9
/usr/lib/.build-id/cc
/usr/lib/.build-id/cc/e8439063245f9e4847dd06bc19bc9232235b32
/usr/lib/librmol.so.1.00
/usr/lib/librmol.so.1.00.6
/usr/share/doc/rmol
/usr/share/doc/rmol/AUTHORS
/usr/share/doc/rmol/COPYING
/usr/share/doc/rmol/ChangeLog
/usr/share/doc/rmol/NEWS
/usr/share/doc/rmol/README.md
/usr/share/man/man1/rmol.1.gz
/usr/share/man/man1/rmol_drawBPC.1.gz
/usr/share/man/man1/rmol_extractBPC.1.gz
/usr/bin/rmol
/usr/bin/rmol_drawBPC
/usr/bin/rmol_extractBPC
/usr/lib/.build-id
/usr/lib/.build-id/ca
/usr/lib/.build-id/ca/9b1ea365149e9f5135d29e9388a100d614b21a
/usr/lib/.build-id/d8
/usr/lib/.build-id/d8/e11d934ce1b8259b2b1ac66aa6a2c209affbc2
/usr/lib64/librmol.so.1.00
/usr/lib64/librmol.so.1.00.6
/usr/share/doc/rmol
/usr/share/doc/rmol/AUTHORS
/usr/share/doc/rmol/COPYING
/usr/share/doc/rmol/ChangeLog
/usr/share/doc/rmol/NEWS
/usr/share/doc/rmol/README.md
/usr/share/man/man1/rmol.1.gz
/usr/share/man/man1/rmol_drawBPC.1.gz
/usr/share/man/man1/rmol_extractBPC.1.gz
References
- [rmol website](https://github.com/airsim/rmol https://github.com/airsim/rmol)
Summary
In this tutorial we learn how to install rmol
on Fedora 34 using yum and dnf.