figlet-toilet command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
figlet-toilet: command not found
or when using sudo you get the following error message
sudo: figlet-toilet: command not found
Solutions to figlet-toilet: command not found
How To Fix figlet-toilet: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu figlet-toilet is provided by toilet package.
toilet is:
TOIlet prints text using large characters made of smaller characters. It is similar in many ways to FIGlet with additional features such as Unicode handling, colour fonts, filters and various export formats.
TOIlet can open FIGlet fonts and is mostly commandline-compatible with it.
To fix this problem, we can install more using the command below.
sudo apt-get -y install toilet
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install toilet.
sudo apt -y install toilet
Or if you have aptitude installed you can use the following command.
sudo aptitude install toilet
Summary
In this tutorial we learn how to fix figlet-toilet command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.