Install cpufetch on Ubuntu 20.04

Install cpufetch on Ubuntu 20.04

The cpufetch is a command line tool for displaying CPU information such as processor name, microarchitecture, number of cores, etc. This tool is written in C programming language and supports various operating systems.

This tutorial demonstrates how to install cpufetch on Ubuntu 20.04.

Install cpufetch

Run the following command to download cpufetch binary from the releases page in GitHub repository:

sudo wget -O /usr/local/bin/cpufetch https://github.com/Dr-Noob/cpufetch/releases/latest/download/cpufetch_x86-64_linux

Set execute permission for a file:

sudo chmod a+x /usr/local/bin/cpufetch

Now cpufetch can be used for all users as a system-wide command.

We can check cpufetch version:

cpufetch --version

Testing cpufetch

Run cpufetch command without any arguments:

cpufetch

You will get information about CPU.

Display CPU information using cpufetch on Ubuntu

Uninstall cpufetch

If you want to remove cpufetch, delete related file:

sudo rm -rf /usr/local/bin/cpufetch

Leave a Comment

Cancel reply

Your email address will not be published.