morbo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
morbo: command not found
or when using sudo you get the following error message
sudo: morbo: command not found
Solutions to morbo: command not found
How To Fix morbo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu morbo is provided by libmojolicious-perl package.
libmojolicious-perl is:
Mojolicious is a Perl Web Application Framework built around the familiar Model-View-Controller philosophy. It supports a simple single file mode via Mojolicious::Lite, RESTful routes, plugins, Perl-ish templates, session management, signed cookies, a testing framework, internationalization, first class Unicode support, and more.
The package also provides the morbo and hypnotoad (development) web servers and the mojo command line script.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libmojolicious-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libmojolicious-perl.
sudo apt -y install libmojolicious-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libmojolicious-perl
Summary
In this tutorial we learn how to fix morbo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.