catimg command not found

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

Introduction

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

catimg: command not found

or when using sudo you get the following error message

sudo: catimg: command not found

Solutions to catimg: command not found

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

In Ubuntu catimg is provided by catimg package.

catimg is:

catimg is a little program written in C with no dependencies that prints images in terminal. It supports JPEG, PNG, ICO and GIF formats.

You will need a 256 color terminal in order to use this program. For higher resolution images, you need unicode support.

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

sudo apt-get -y install catimg

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

You can also use apt command to install catimg.

sudo apt -y install catimg

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

sudo aptitude install catimg

Summary

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