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 24.04.
Install cpufetch
Run the following command to download cpufetch binary from the releases page in GitHub repository:
sudo wget -qO /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.
Uninstall cpufetch
If you want to remove cpufetch, delete related file:
sudo rm -rf /usr/local/bin/cpufetch
Leave a Comment
Cancel reply