How To Install libebml on Fedora 34
Introduction
In this tutorial we learn how to install libebml
on Fedora 34.
What is libebml
Extensible Binary Meta Language access library A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML. libebml 1.4.2 1.fc34 x86_64 83 k libebml-1.4.2-1.fc34.src.rpm fedora Extensible Binary Meta Language library https LGPLv2+ Extensible Binary Meta Language access library A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML.
We can use yum
or dnf
to install libebml
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libebml.
Install libebml 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 libebml
using dnf
by running the following command:
sudo dnf -y install libebml
Install libebml 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 libebml
using yum
by running the following command:
sudo yum -y install libebml
How To Uninstall libebml on Fedora 34
To uninstall only the libebml
package we can use the following command:
sudo dnf remove libebml
libebml Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/3a
/usr/lib/.build-id/3a/237583eb38407d30c00ca05e9c04743d17b1bb
/usr/lib64/libebml.so.5
/usr/lib64/libebml.so.5.0.0
/usr/share/doc/libebml
/usr/share/doc/libebml/ChangeLog
/usr/share/licenses/libebml
/usr/share/licenses/libebml/LICENSE.LGPL
/usr/lib/.build-id
/usr/lib/.build-id/ca
/usr/lib/.build-id/ca/a613efed3e832ffa2f53e1e0611be3028aedfc
/usr/lib/libebml.so.5
/usr/lib/libebml.so.5.0.0
/usr/share/doc/libebml
/usr/share/doc/libebml/ChangeLog
/usr/share/licenses/libebml
/usr/share/licenses/libebml/LICENSE.LGPL
References
- [libebml website](https://www.matroska.org/ https://www.matroska.org/)
Summary
In this tutorial we learn how to install libebml
on Fedora 34 using yum and dnf.