How To Install multitail on Fedora 34

multitail is View one or multiple files like tail but with multiple windows

Introduction

In this tutorial we learn how to install multitail on Fedora 34.

What is multitail

MultiTail lets you view one or multiple files like the original tail program. The difference is that it creates multiple windows on your console (with ncurses). It can also monitor wildcards matching the wildcard has a more recent modification date, it will automatically switch to that file. That way you can, for example, monitor a complete directory of files. Merging of 2 or even more logfiles is possible. It can also use colors while displaying the logfiles (through regular expressions), for faster recognition of what is important and what not. Multitail can also filter lines (again with regular expressions) and has interactive menus for editing given regular expressions and deleting and adding windows. One can also have windows with the output of shell scripts and other software. When viewing the output of external software, MultiTail can mimic the functionality of tools like ‘watch’ and such.

We can use yum or dnf to install multitail on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install multitail.

Install multitail 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 multitail using dnf by running the following command:

sudo dnf -y install multitail

Install multitail 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 multitail using yum by running the following command:

sudo yum -y install multitail

How To Uninstall multitail on Fedora 34

To uninstall only the multitail package we can use the following command:

sudo dnf remove multitail

multitail Package Contents on Fedora 34

/etc/multitail
/etc/multitail.conf
/etc/multitail/convert-geoip.pl
/etc/multitail/convert-simple.pl
/usr/bin/multitail
/usr/lib/.build-id
/usr/lib/.build-id/02
/usr/lib/.build-id/02/605afe78a7e06c61bed11fda1708994fe6ca53
/usr/share/doc/multitail
/usr/share/doc/multitail/colors-example.pl
/usr/share/doc/multitail/colors-example.sh
/usr/share/doc/multitail/manual-nl.html
/usr/share/doc/multitail/manual.html
/usr/share/doc/multitail/readme.txt
/usr/share/licenses/multitail
/usr/share/licenses/multitail/license.txt
/usr/share/man/man1/multitail.1.gz

References

Summary

In this tutorial we learn how to install multitail on Fedora 34 using yum and dnf.