catatonit command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
catatonit: command not found
or when using sudo you get the following error message
sudo: catatonit: command not found
Solutions to catatonit: command not found
How To Fix catatonit: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu catatonit is provided by catatonit package.
catatonit is:
catatonic is a very simple init process for application containers. Its purpose is to support only the usage by container managers such as docker and podman, which is /dev/init –
. No other use cases will be supported.
To fix this problem, we can install more using the command below.
sudo apt-get -y install catatonit
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install catatonit.
sudo apt -y install catatonit
Or if you have aptitude installed you can use the following command.
sudo aptitude install catatonit
Summary
In this tutorial we learn how to fix catatonit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.