seetxt command not found

In this troubleshooting guide we learn how to fix seetxt command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

seetxt: command not found

or when using sudo you get the following error message

sudo: seetxt: command not found

Solutions to seetxt: command not found

How To Fix seetxt: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu seetxt is provided by seetxt package.

seetxt is:

See is a lightweight Linux text file and man page viewer. It maintains “document meta-data” for each user, allowing them to automatically keep bookmarks and highlights for read-only system files. It also has a “server mode” so that command line requests can be sent to a single running server rather than starting multiple instances. Other features include hypertext-style apropos (man page) searches, file monitoring, regular expressions, command history, and nice little toggle lights on the interface for the server and file monitor.

To fix this problem, we can install more using the command below.

sudo apt-get -y install seetxt

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install seetxt.

sudo apt -y install seetxt

Or if you have aptitude installed you can use the following command.

sudo aptitude install seetxt

Summary

In this tutorial we learn how to fix seetxt command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.