How To Install libusbx-devel on Rocky Linux 8

In this tutorial we learn how to install libusbx-devel on Rocky Linux 8. libusbx-devel is Development files for libusbx

Introduction

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

What is libusbx-devel

The libusbx-devel package contains libraries and header files for developing applications that use libusbx.

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

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

sudo dnf -y install libusbx-devel

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

sudo yum -y install libusbx-devel

How To Uninstall libusbx-devel on Rocky Linux 8

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

sudo dnf remove libusbx-devel

libusbx-devel Package Contents on Rocky Linux 8

/usr/include/libusb-1.0
/usr/include/libusb-1.0/libusb.h
/usr/lib/libusb-1.0.so
/usr/lib/pkgconfig/libusb-1.0.pc
/usr/include/libusb-1.0
/usr/include/libusb-1.0/libusb.h
/usr/lib64/libusb-1.0.so
/usr/lib64/pkgconfig/libusb-1.0.pc

References

Summary

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