Etsearch command not found

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

Introduction

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

Etsearch: command not found

or when using sudo you get the following error message

sudo: Etsearch: command not found

Solutions to Etsearch: command not found

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

In Ubuntu Etsearch is provided by eterm package.

eterm is:

A terminal emulator in the spirit of xterm or rxvt, eterm uses an Enlightenment style config file, as well as themes. The Imlib2 graphics engine is used to render images. This version supports background images, pixmapped scrollbars, pseudo-transparency, and POSIX threads.

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

sudo apt-get -y install eterm

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

You can also use apt command to install eterm.

sudo apt -y install eterm

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

sudo aptitude install eterm

Summary

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