How To Install CUnit-devel on CentOS 8
Introduction
In this tutorial we learn how to install CUnit-devel on CentOS 8.
What is CUnit-devel
The CUnit-devel package contains the header files and libraries for use with CUnit package. The CUnit-devel package contains the header files and libraries for use with CUnit package.
We can use yum or dnf to install CUnit-devel on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install CUnit-devel.
Install CUnit-devel on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install CUnit-devel using yum by running the following command:
sudo yum -y install CUnit-devel
Install CUnit-devel on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install CUnit-devel using dnf by running the following command:
sudo dnf -y install CUnit-devel
How To Uninstall CUnit-devel on CentOS 8
To uninstall only the CUnit-devel package we can use the following command:
sudo dnf remove CUnit-devel
References
Summary
In this tutorial we learn how to install CUnit-devel on CentOS 8 using yum and dnf.