mina command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mina: command not found
or when using sudo you get the following error message
sudo: mina: command not found
Solutions to mina: command not found
How To Fix mina: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mina is provided by mina package.
mina is:
Mina is a fast deploy Bash script generator. It generates an entire deployment procedure as a Bash script and runs it remotely on a server, creating a single SSH session per deploy, minimizing the SSH connection overhead. Its syntax is similar to Capistrano.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mina
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mina.
sudo apt -y install mina
Or if you have aptitude installed you can use the following command.
sudo aptitude install mina
Summary
In this tutorial we learn how to fix mina command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.