cadubi command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cadubi: command not found
or when using sudo you get the following error message
sudo: cadubi: command not found
Solutions to cadubi: command not found
How To Fix cadubi: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cadubi is provided by cadubi package.
cadubi is:
CADUBI is an application written in Perl that allows you to draw text-based images that are viewable on typical unix-based consoles. Usually the applications that emulate these consoles support various text modes, such as background and foreground colors, bold, and inverse.
This text art, commonly called “ASCII art”, is used in various places such as online BBSes, email and login prompts.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cadubi
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cadubi.
sudo apt -y install cadubi
Or if you have aptitude installed you can use the following command.
sudo aptitude install cadubi
Summary
In this tutorial we learn how to fix cadubi command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.