corona command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
corona: command not found
or when using sudo you get the following error message
sudo: corona: command not found
Solutions to corona: command not found
How To Fix corona: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu corona is provided by libcorona-perl package.
libcorona-perl is:
Corona is a Coro based Plack web server. It uses Net::Server::Coro under the hood, which means there are coroutines (threads) for each socket, active connections and a main loop.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libcorona-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libcorona-perl.
sudo apt -y install libcorona-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libcorona-perl
Summary
In this tutorial we learn how to fix corona command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.