How To Install libell on Fedora 34
Introduction
In this tutorial we learn how to install libell on Fedora 34.
What is libell
The Embedded Linux* Library (ELL) provides core, low-level functionality for system daemons. It typically has no dependencies other than the Linux kernel, C standard library, and libdl (for dynamic linking). While ELL is designed to be efficient and compact enough for use on embedded Linux platforms, it is not limited to resource-constrained systems. libell 0.41 1.fc34 x86_64 215 k libell-0.41-1.fc34.src.rpm updates Embedded Linux library https LGPLv2+ The Embedded Linux* Library (ELL) provides core, low-level functionality for system daemons. It typically has no dependencies other than the Linux kernel, C standard library, and libdl (for dynamic linking). While ELL is designed to be efficient and compact enough for use on embedded Linux platforms, it is not limited to resource-constrained systems.
We can use yum or dnf to install libell on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libell.
Install libell 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 libell using dnf by running the following command:
sudo dnf -y install libell
Install libell 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 libell using yum by running the following command:
sudo yum -y install libell
How To Uninstall libell on Fedora 34
To uninstall only the libell package we can use the following command:
sudo dnf remove libell
libell Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/0c
/usr/lib/.build-id/0c/6e97a9d7d378aed51cd1c24b89539c9444b511
/usr/lib64/libell.so.0
/usr/lib64/libell.so.0.0.2
/usr/share/doc/libell
/usr/share/doc/libell/AUTHORS
/usr/share/doc/libell/ChangeLog
/usr/share/licenses/libell
/usr/share/licenses/libell/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/3e
/usr/lib/.build-id/3e/4e14f82f2bfb16d515ee103cb293b3feb53d80
/usr/lib64/libell.so.0
/usr/lib64/libell.so.0.0.2
/usr/share/doc/libell
/usr/share/doc/libell/AUTHORS
/usr/share/doc/libell/ChangeLog
/usr/share/licenses/libell
/usr/share/licenses/libell/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/5b
/usr/lib/.build-id/5b/9a3a51992d8c9ea796c0a4d91e63a43aea545a
/usr/lib/libell.so.0
/usr/lib/libell.so.0.0.2
/usr/share/doc/libell
/usr/share/doc/libell/AUTHORS
/usr/share/doc/libell/ChangeLog
/usr/share/licenses/libell
/usr/share/licenses/libell/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/64
/usr/lib/.build-id/64/a28fc858de0ea629ab3efb4f7e697f4287eace
/usr/lib/libell.so.0
/usr/lib/libell.so.0.0.2
/usr/share/doc/libell
/usr/share/doc/libell/AUTHORS
/usr/share/doc/libell/ChangeLog
/usr/share/licenses/libell
/usr/share/licenses/libell/COPYING
References
- [libell website](https://01.org/ell https://01.org/ell)
Summary
In this tutorial we learn how to install libell on Fedora 34 using yum and dnf.