How To Install teseq on CentOS 7

In this tutorial we learn how to install teseq on CentOS 7. teseq is An utility for rendering terminal typescripts human-readable

Introduction

In this tutorial we learn how to install teseq on CentOS 7.

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 CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install teseq.

Install teseq on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install teseq using yum by running the following command:

sudo yum -y install teseq

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

sudo dnf -y install teseq

How To Uninstall teseq on CentOS 7

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

sudo dnf remove teseq

References

Summary

In this tutorial we learn how to install teseq on CentOS 7 using yum and dnf.