conmux command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
conmux: command not found
or when using sudo you get the following error message
sudo: conmux: command not found
Solutions to conmux: command not found
How To Fix conmux: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu conmux is provided by conmux package.
conmux is:
CONMUX is a console abstractor. Presenting any console with a consistent location, naming and semantic. Access to the console, and hardreset of the machine is the same regardless of the underlying access methodology.
To fix this problem, we can install more using the command below.
sudo apt-get -y install conmux
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install conmux.
sudo apt -y install conmux
Or if you have aptitude installed you can use the following command.
sudo aptitude install conmux
Summary
In this tutorial we learn how to fix conmux command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.