How To Install liblognorm on Fedora 34
Introduction
In this tutorial we learn how to install liblognorm
on Fedora 34.
What is liblognorm
Briefly described, liblognorm is a tool to normalize log data. People who need to take a look at logs often have a common problem. Logs from different machines (from different vendors) usually have different formats for their logs. Even if it is the same type of log (e.g. from firewalls), the log entries are so different, that it is pretty hard to read these. This is where liblognorm comes into the game. With this tool you can normalize all your logs. All you need is liblognorm and its dependencies and a sample database that fits the logs you want to normalize. liblognorm 2.0.6 1.fc34 x86_64 88 k liblognorm-2.0.6-1.fc34.src.rpm fedora Fast samples-based log normalization library http LGPLv2+ Briefly described, liblognorm is a tool to normalize log data. People who need to take a look at logs often have a common problem. Logs from different machines (from different vendors) usually have different formats for their logs. Even if it is the same type of log (e.g. from firewalls), the log entries are so different, that it is pretty hard to read these. This is where liblognorm comes into the game. With this tool you can normalize all your logs. All you need is liblognorm and its dependencies and a sample database that fits the logs you want to normalize.
We can use yum
or dnf
to install liblognorm
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install liblognorm.
Install liblognorm 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 liblognorm
using dnf
by running the following command:
sudo dnf -y install liblognorm
Install liblognorm 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 liblognorm
using yum
by running the following command:
sudo yum -y install liblognorm
How To Uninstall liblognorm on Fedora 34
To uninstall only the liblognorm
package we can use the following command:
sudo dnf remove liblognorm
liblognorm Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/8a
/usr/lib/.build-id/8a/94a9ffb1a9e3d33dd65d4444aeadeb1f355109
/usr/lib64/liblognorm.so.5
/usr/lib64/liblognorm.so.5.1.0
/usr/share/doc/liblognorm
/usr/share/doc/liblognorm/AUTHORS
/usr/share/doc/liblognorm/ChangeLog
/usr/share/doc/liblognorm/README
/usr/share/licenses/liblognorm
/usr/share/licenses/liblognorm/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/b2
/usr/lib/.build-id/b2/3a718aef6077c09f7601af82f64d938676a386
/usr/lib/liblognorm.so.5
/usr/lib/liblognorm.so.5.1.0
/usr/share/doc/liblognorm
/usr/share/doc/liblognorm/AUTHORS
/usr/share/doc/liblognorm/ChangeLog
/usr/share/doc/liblognorm/README
/usr/share/licenses/liblognorm
/usr/share/licenses/liblognorm/COPYING
References
- [liblognorm website](http://www.liblognorm.com http://www.liblognorm.com)
Summary
In this tutorial we learn how to install liblognorm
on Fedora 34 using yum and dnf.