How To Install ck on Fedora 34

ck is Library for high performance concurrent programming Library for high performance concurrent programming

Introduction

In this tutorial we learn how to install ck on Fedora 34.

What is ck

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. ck 0.7.0 4.fc34 x86_64 34 k ck-0.7.0-4.fc34.src.rpm fedora Library for high performance concurrent programming http BSD 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.

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

Install ck on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install ck

Install ck on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo yum -y install ck

How To Uninstall ck on Fedora 34

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

sudo dnf remove ck

ck Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/2e
/usr/lib/.build-id/2e/adb82b5133b4f35263a48d4c9dceeca54ba829
/usr/lib/libck.so.0
/usr/lib/libck.so.0.7.0
/usr/share/licenses/ck
/usr/share/licenses/ck/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/d8
/usr/lib/.build-id/d8/5e70081a24a4437e49077c3e63d4629e2a03d1
/usr/lib64/libck.so.0
/usr/lib64/libck.so.0.7.0
/usr/share/licenses/ck
/usr/share/licenses/ck/LICENSE

References

Summary

In this tutorial we learn how to install ck on Fedora 34 using yum and dnf.