xttitle command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xttitle: command not found
or when using sudo you get the following error message
sudo: xttitle: command not found
Solutions to xttitle: command not found
How To Fix xttitle: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xttitle is provided by xttitle package.
xttitle is:
This is a small program that generates escape sequences to change the title of terminal emulator windows under X. It should work with any program that emulates an xterm-like terminal.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xttitle
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xttitle.
sudo apt -y install xttitle
Or if you have aptitude installed you can use the following command.
sudo aptitude install xttitle
Summary
In this tutorial we learn how to fix xttitle command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.