How To Install libart on Fedora 36
Introduction
In this tutorial we learn how to install libart on Fedora 36.
What is libart
This library provides a C99 implementation of the Adaptive Radix Tree or ART. The ART operates similar to a traditional radix tree but avoids the wasted space of internal nodes by changing the node size. It makes use of 4 node sizes (4, 16, 48, 256), and can guarantee that the overhead is no more than 52 bytes per key, though in practice it is much lower.
We can use yum or dnf to install libart on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install libart.
Install libart on Fedora 36 Using dnf
Update yum database with dnf using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libart using dnf by running the following command:
sudo dnf -y install libart
Install libart on Fedora 36 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libart using yum by running the following command:
sudo yum -y install libart
How To Uninstall libart on Fedora 36
To uninstall only the libart package we can use the following command:
sudo dnf remove libart
libart Package Contents on Fedora 36
---
title: "How To Install libart on Fedora 36"
linkTitle: "libart"
type: "docs"
description: "In this tutorial we learn how to install libart in Fedora 36. libart is Adaptive Radix Trees implemented in C"
date: "2022-08-17"
lastmod: "2022-08-17"
#image: /images/fedora/36/libart-featured.png
---
## Introduction
In this tutorial we learn how to install `libart` on Fedora 36.
### What is `libart`
> This library provides a C99 implementation of the Adaptive Radix Tree or ART. The ART operates similar to a traditional radix tree but avoids the wasted space of internal nodes by changing the node size. It makes use of 4 node sizes (4, 16, 48, 256), and can guarantee that the overhead is no more than 52 bytes per key, though in practice it is much lower.
We can use `yum` or `dnf` to install `libart` on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install libart.
## Install libart on Fedora 36 Using dnf
Update yum database with `dnf` using the following command.
```bash
sudo dnf makecache --refresh
After updating yum database, We can install libart using dnf by running the following command:
sudo dnf -y install libart
Install libart on Fedora 36 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libart using yum by running the following command:
sudo yum -y install libart
How To Uninstall libart on Fedora 36
To uninstall only the libart package we can use the following command:
sudo dnf remove libart
libart Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/6e
/usr/lib/.build-id/6e/7f301b4b57ce77aea56b572de468da8f0f5e7a
/usr/lib/libart.so.0
/usr/share/doc/libart
/usr/share/doc/libart/README.md
/usr/share/licenses/libart
/usr/share/licenses/libart/LICENSE
References
Summary
In this tutorial we learn how to install libart on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).
/usr/lib/.build-id /usr/lib/.build-id/23 /usr/lib/.build-id/23/fe7e2ddd81c9505d68cdae75daaa0c355789ee /usr/lib64/libart.so.0 /usr/share/doc/libart /usr/share/doc/libart/README.md /usr/share/licenses/libart /usr/share/licenses/libart/LICENSE
## References
* [libart website](https://github.com/armon/libart)
## Summary
In this tutorial we learn how to install `libart` on [Fedora 36](/fedora/36/) using [yum](/fedora/36/yum/) and [dnf]((/fedora/36/dnf/).