conmand command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
conmand: command not found
or when using sudo you get the following error message
sudo: conmand: command not found
Solutions to conmand: command not found
How To Fix conmand: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu conmand is provided by conman package.
conman is:
ConMan is a serial console management program designed to support a large number of console devices and simultaneous users. It supports: - local serial devices - remote terminal servers (via the telnet protocol) - IPMI Serial-Over-LAN (via FreeIPMI) - Unix domain sockets - external processes (e.g., using Expect for telnet / ssh / ipmi-sol connections) Its features include: - logging (and optionally timestamping) console device output to file - connecting to consoles in monitor (R/O) or interactive (R/W) mode - allowing clients to share or steal console write privileges - broadcasting client output to multiple consoles
To fix this problem, we can install more using the command below.
sudo apt-get -y install conman
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install conman.
sudo apt -y install conman
Or if you have aptitude installed you can use the following command.
sudo aptitude install conman
Summary
In this tutorial we learn how to fix conmand command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.