How To Install mujs-devel on Rocky Linux 8

In this tutorial we learn how to install mujs-devel on Rocky Linux 8. mujs-devel is MuJS development files

Introduction

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

What is mujs-devel

This package provides the MuJS static library.

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

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

sudo dnf -y install mujs-devel

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

sudo yum -y install mujs-devel

How To Uninstall mujs-devel on Rocky Linux 8

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

sudo dnf remove mujs-devel

mujs-devel Package Contents on Rocky Linux 8

/usr/include/mujs.h
/usr/lib64/libmujs.a
/usr/lib64/pkgconfig/mujs.pc
/usr/share/doc/mujs-devel
/usr/share/doc/mujs-devel/AUTHORS
/usr/share/doc/mujs-devel/README
/usr/share/licenses/mujs-devel
/usr/share/licenses/mujs-devel/COPYING

References

Summary

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