minil command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
minil: command not found
or when using sudo you get the following error message
sudo: minil: command not found
Solutions to minil: command not found
How To Fix minil: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu minil is provided by minilla package.
minilla is:
Minilla is a CPAN module authoring tool. Minilla provides the minil command for creating, testing, releasing, installing, and uploading CPAN distributions.
To fix this problem, we can install more using the command below.
sudo apt-get -y install minilla
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install minilla.
sudo apt -y install minilla
Or if you have aptitude installed you can use the following command.
sudo aptitude install minilla
Summary
In this tutorial we learn how to fix minil command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.