icesh command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
icesh: command not found
or when using sudo you get the following error message
sudo: icesh: command not found
Solutions to icesh: command not found
How To Fix icesh: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu icesh is provided by icewm package.
icewm is:
IceWm is a Window Manager for X Window System. It is fast and memory-efficient, and it provides many different looks including Windows'95, OS/2 Warp 3,4, Motif. It tries to take the best features of the above systems. Additional features include multiple workspaces, opaque move/resize, task bar, window list, mailbox status, digital clock.
To fix this problem, we can install more using the command below.
sudo apt-get -y install icewm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install icewm.
sudo apt -y install icewm
Or if you have aptitude installed you can use the following command.
sudo aptitude install icewm
Summary
In this tutorial we learn how to fix icesh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.