cpufetch command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cpufetch: command not found
or when using sudo you get the following error message
sudo: cpufetch: command not found
Solutions to cpufetch: command not found
How To Fix cpufetch: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cpufetch is provided by cpufetch package.
cpufetch is:
Shows CPU Information with CPU manufacturer Logo Cpufetch is a cross-platform and easy-to-use cpu information command line script that collects your cpu information and display it on the terminal next to an image
To fix this problem, we can install more using the command below.
sudo apt-get -y install cpufetch
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cpufetch.
sudo apt -y install cpufetch
Or if you have aptitude installed you can use the following command.
sudo aptitude install cpufetch
Summary
In this tutorial we learn how to fix cpufetch command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.