qterm command not found
In this troubleshooting guide we learn how to fix qterm command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
qterm: command not found
or when using sudo you get the following error message
sudo: qterm: command not found
Solutions to qterm: command not found
How To Fix qterm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu qterm is provided by qterm package.
qterm is:
QTerm is a BBS client for X Window System. It supports telnet, ssh1 and ssh2 protocols. It also supports zmodem, URL detect, mouse action.
To fix this problem, we can install more using the command below.
sudo apt-get -y install qterm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install qterm.
sudo apt -y install qterm
Or if you have aptitude installed you can use the following command.
sudo aptitude install qterm
Summary
In this tutorial we learn how to fix qterm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.