aainfo command not found

In this troubleshooting guide we learn how to fix aainfo command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

aainfo: command not found

or when using sudo you get the following error message

sudo: aainfo: command not found

Solutions to aainfo: command not found

How To Fix aainfo: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu aainfo is provided by libaa-bin package.

libaa-bin is:

AAlib is a portable ASCII art graphics library. Internally, it works like a graphics display, but the output is rendered into gorgeous platform independent ASCII graphics.

This package contains a few sample programs that use aalib.

To fix this problem, we can install more using the command below.

sudo apt-get -y install libaa-bin

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install libaa-bin.

sudo apt -y install libaa-bin

Or if you have aptitude installed you can use the following command.

sudo aptitude install libaa-bin

Summary

In this tutorial we learn how to fix aainfo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.