ifetch command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ifetch: command not found
or when using sudo you get the following error message
sudo: ifetch: command not found
Solutions to ifetch: command not found
How To Fix ifetch: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ifetch is provided by ifetch-tools package.
ifetch-tools is:
A set of tools that can collect images from IP based cameras, monitor the collection process, and provide an interface to view the collected history.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ifetch-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ifetch-tools.
sudo apt -y install ifetch-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install ifetch-tools
Summary
In this tutorial we learn how to fix ifetch command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.