How To Install ck-devel on AlmaLinux 8

In this tutorial we learn how to install ck-devel in AlmaLinux 8. ck-devel is Header files and libraries for CK development

Introduction

In this tutorial we learn how to install ck-devel on AlmaLinux 8.

What is ck-devel

Concurrency Kit provides a plethora of concurrency primitives, safe memory reclamation mechanisms and lock-less and lock-free data structures designed to aid in the design and implementation of high performance concurrent systems. It is designed to minimize dependencies on operating system-specific interfaces and most of the interface relies only on a strict subset of the standard library and more popular compiler extensions. This package provides the libraries, include files, and other resources needed for developing Concurrency Kit applications.

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

Install ck-devel on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install ck-devel using dnf by running the following command:

sudo dnf -y install ck-devel

Install ck-devel on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install ck-devel using yum by running the following command:

sudo yum -y install ck-devel

How To Uninstall ck-devel on AlmaLinux 8

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

sudo dnf remove ck-devel

References

Summary

In this tutorial we learn how to install ck-devel on AlmaLinux 8 using yum and dnf.