How To Install teseq on Fedora 34

teseq is An utility for rendering terminal typescripts human-readable

Introduction

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

What is teseq

Teseq, a tool for analyzing files that contain control characters and terminal control sequences. It is intended to be useful for diagnosing terminal emulators, and programs that make heavy use of terminal features (such as those based on the Curses library). It is primarily targeted at individuals who possess a basic understanding of terminal control sequences, especially CSI sequences.

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

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

sudo dnf -y install teseq

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

sudo yum -y install teseq

How To Uninstall teseq on Fedora 34

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

sudo dnf remove teseq

teseq Package Contents on Fedora 34

/usr/bin/reseq
/usr/bin/teseq
/usr/lib/.build-id
/usr/lib/.build-id/30
/usr/lib/.build-id/30/70676413ae3edd6997379ed056f06093889d75
/usr/share/doc/teseq
/usr/share/doc/teseq/AUTHORS
/usr/share/doc/teseq/COPYING
/usr/share/doc/teseq/ChangeLog
/usr/share/doc/teseq/NEWS
/usr/share/doc/teseq/README
/usr/share/info/teseq.info.gz
/usr/share/man/man1/reseq.1.gz
/usr/share/man/man1/teseq.1.gz

References

Summary

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