xtermset command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xtermset: command not found
or when using sudo you get the following error message
sudo: xtermset: command not found
Solutions to xtermset: command not found
How To Fix xtermset: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xtermset is provided by xtermset package.
xtermset is:
xtermset allows you to change the characteristics, such as title and geometry, of an xterm window from the command line. Most options have the same names as those that you would give xterm at startup.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xtermset
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xtermset.
sudo apt -y install xtermset
Or if you have aptitude installed you can use the following command.
sudo aptitude install xtermset
Summary
In this tutorial we learn how to fix xtermset command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.