How To Install rmol-devel on Rocky Linux 8

In this tutorial we learn how to install rmol-devel on Rocky Linux 8. rmol-devel is Header files, libraries and development helper tools for rmol

Introduction

In this tutorial we learn how to install rmol-devel on Rocky Linux 8.

What is rmol-devel

This package contains the header files, shared libraries and development helper tools for rmol. If you would like to develop programs using rmol, you will need to install rmol-devel.

We can use yum or dnf to install rmol-devel on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install rmol-devel.

Install rmol-devel 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 rmol-devel using dnf by running the following command:

sudo dnf -y install rmol-devel

Install rmol-devel 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 rmol-devel using yum by running the following command:

sudo yum -y install rmol-devel

How To Uninstall rmol-devel on Rocky Linux 8

To uninstall only the rmol-devel package we can use the following command:

sudo dnf remove rmol-devel

rmol-devel Package Contents on Rocky Linux 8

/usr/bin/rmol-config
/usr/include/rmol
/usr/include/rmol/OptimizationType.hpp
/usr/include/rmol/RMOL_Service.hpp
/usr/include/rmol/RMOL_Types.hpp
/usr/lib64/librmol.so
/usr/lib64/pkgconfig/rmol.pc
/usr/share/aclocal/rmol.m4
/usr/share/man/man1/rmol-config.1.gz
/usr/share/man/man3/rmol-library.3.gz
/usr/share/rmol
/usr/share/rmol/CMake
/usr/share/rmol/CMake/rmol-config-version.cmake
/usr/share/rmol/CMake/rmol-config.cmake
/usr/share/rmol/CMake/rmol-library-depends-debug.cmake
/usr/share/rmol/CMake/rmol-library-depends.cmake

References

Summary

In this tutorial we learn how to install rmol-devel on Rocky Linux 8 using yum and dnf.