zutty command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
zutty: command not found
or when using sudo you get the following error message
sudo: zutty: command not found
Solutions to zutty: command not found
How To Fix zutty: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu zutty is provided by zutty package.
zutty is:
Zutty is a terminal emulator for the X Window System, functionally similar to several other X terminal emulators such as xterm, rxvt and others. It is also similar to other, much more modern, GPU-accelerated terminal emulators.
Zutty uses a radically simple, yet extremely efficient rendering implementation, coupled with a sufficiently complete feature set to make it useful for a wide range of users. It also offers high throughput with low latency, and strives to conform to relevant standards, either published or de-facto.
To fix this problem, we can install more using the command below.
sudo apt-get -y install zutty
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install zutty.
sudo apt -y install zutty
Or if you have aptitude installed you can use the following command.
sudo aptitude install zutty
Summary
In this tutorial we learn how to fix zutty command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.