How To Install libee on CentOS 7
Introduction
In this tutorial we learn how to install libee on CentOS 7.
What is libee
The core idea of libee is to provide a small but hopefully convenient API layer above the CEE standard. CEE is under heavy development and even some of its core data structures have not been fully specified. CEE is an upcoming standard used to describe network events in a number of normalized formats. It’s goal is to unify many different representations that exist in the industry. The core idea of libee is to provide a small but hopefully convenient API layer above the CEE standard. CEE is under heavy development and even some of its core data structures have not been fully specified. CEE is an upcoming standard used to describe network events in a number of normalized formats. It’s goal is to unify many different representations that exist in the industry.
We can use yum or dnf to install libee on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install libee.
Install libee on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install libee using yum by running the following command:
sudo yum -y install libee
Install libee on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install libee using dnf by running the following command:
sudo dnf -y install libee
How To Uninstall libee on CentOS 7
To uninstall only the libee package we can use the following command:
sudo dnf remove libee
References
Summary
In this tutorial we learn how to install libee on CentOS 7 using yum and dnf.