How To Install libproxy-devel on Rocky Linux 8

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

Introduction

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

What is libproxy-devel

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

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

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

sudo dnf -y install libproxy-devel

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

sudo yum -y install libproxy-devel

How To Uninstall libproxy-devel on Rocky Linux 8

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

sudo dnf remove libproxy-devel

libproxy-devel Package Contents on Rocky Linux 8

/usr/include/proxy.h
/usr/lib/libproxy.so
/usr/lib/pkgconfig/libproxy-1.0.pc
/usr/share/cmake/Modules/Findlibproxy.cmake
/usr/include/proxy.h
/usr/lib64/libproxy.so
/usr/lib64/pkgconfig/libproxy-1.0.pc
/usr/share/cmake/Modules/Findlibproxy.cmake

References

Summary

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