fimgs command not found

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

Introduction

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

fimgs: command not found

or when using sudo you get the following error message

sudo: fimgs: command not found

Solutions to fimgs: command not found

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

In Ubuntu fimgs is provided by fim package.

fim is:

FIM is a highly customizable scriptable image viewer targeted at the users who are comfortable with software like the Vim text editor or the Mutt mail user agent. FIM aims to be a “swiss army knife” for viewing images. Its code derives from the “Fbi” framebuffer image viewer by Gerd Hoffmann. FIM is multidevice: it has X support via the SDL library and ascii art output via the aalib library.

It supports image description files, file search and filtering using regular expressions on filenames and descriptions, caption display, customizable status line, EXIF tags display, EXIF-based image rotation, recursive directory traversal, reading from stdin, and can e.g. jump between two images remembering scale and position.

It can speed up loading by image caching and speed up scaling with mipmaps. It offers GNU readline command line autocompletion and history, completely customizable key bindings, external/internal (if-while based) scriptability (through return codes, standard input/output, and commands given at invocation time, an initialization file, Vim-like autocommands), and much more.

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

sudo apt-get -y install fim

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

You can also use apt command to install fim.

sudo apt -y install fim

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

sudo aptitude install fim

Summary

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