How To Install libdispatch-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install libdispatch-devel
on Rocky Linux 8.
What is libdispatch-devel
Development files for libdispatch
We can use yum
or dnf
to install libdispatch-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libdispatch-devel.
Install libdispatch-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 libdispatch-devel
using dnf
by running the following command:
sudo dnf -y install libdispatch-devel
Install libdispatch-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 libdispatch-devel
using yum
by running the following command:
sudo yum -y install libdispatch-devel
How To Uninstall libdispatch-devel on Rocky Linux 8
To uninstall only the libdispatch-devel
package we can use the following command:
sudo dnf remove libdispatch-devel
libdispatch-devel Package Contents on Rocky Linux 8
/usr/include/Block.h
/usr/include/dispatch/base.h
/usr/include/dispatch/block.h
/usr/include/dispatch/data.h
/usr/include/dispatch/dispatch.h
/usr/include/dispatch/group.h
/usr/include/dispatch/introspection.h
/usr/include/dispatch/io.h
/usr/include/dispatch/object.h
/usr/include/dispatch/once.h
/usr/include/dispatch/queue.h
/usr/include/dispatch/semaphore.h
/usr/include/dispatch/source.h
/usr/include/dispatch/time.h
/usr/include/os/generic_unix_base.h
/usr/include/os/generic_win_base.h
/usr/include/os/object.h
References
Summary
In this tutorial we learn how to install libdispatch-devel
on Rocky Linux 8 using yum and dnf.