teseq command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
teseq: command not found
or when using sudo you get the following error message
sudo: teseq: command not found
Solutions to teseq: command not found
How To Fix teseq: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu teseq is provided by teseq package.
teseq is:
GNU Teseq is 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; however, by default Teseq will try to identify and describe the sequences that it encounters, and the behavior they might produce in a terminal.
To fix this problem, we can install more using the command below.
sudo apt-get -y install teseq
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install teseq.
sudo apt -y install teseq
Or if you have aptitude installed you can use the following command.
sudo aptitude install teseq
Summary
In this tutorial we learn how to fix teseq command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.