/ tuesdaytooling

Tuesday Tooling: CPUFetch & Neofetch

Get CPU data...beautifully.

With Linux we can get data on our machine with any one of a number of tools.

  • dmidecode
  • lspci
  • lsusb

But sometimes we just want a quick headline / overview of what we need to know, and this is where tools such as Neofetch and CPUFetch are useful.

So What is Neofetch?

Screenshot-from-2021-04-27-09-14-09
Neofetch is a tool that collects data on your system, such as CPU, GPU, OS, Kernel etc. It then displays the data along with a large ASCII logo of your OS.
To install Neofetch we use our OS' package manager, in my case it is Ubuntu 21.04 and I installed via the terminal.

sudo apt update
sudo apt install neofetch

We then run the command neofetch to get the data.

Animated-GIF-downsized

Hi reader!

I never put my blog posts behind paywall or pop ups because quite frankly that is annoying and prevents anyone from accessing the content. I will always keep my blog content free of charge. But I do ask that if you are able and willing, that you buy me a "coffee" as it helps me to pay for hosting this blog, and to buy stuff to hack from Poundshops / Dollar Stores / Aliexpress which are used in free projects and reviews on this blog. It is You dear reader who make this possible, and I am immensely grateful for your support.
Thanks!

So What is CPUFetch

Screenshot-from-2021-04-27-09-42-25
"Simple yet fancy CPU architecture fetching tool"
If you need to know the details of your CPU, and want them quick, then CPUFetch is quite useful.

CPUFetch is compatible with Linux, Windows and macOS (x86_64 only) and interestingly is is compatible with Android.

Installation is via the project's GitHub page

Clone the GitHub repository

git clone https://github.com/Dr-Noob/cpufetch

Change directory to cpufetch.

cd cpufetch

Make the application.

make

Now you can run CPUFetch from that directory.

./cpufetch

If you would like to have CPUFetch available from any directory, copy the file to your /usr/bin/ directory.

sudo cp cpufetch /usr/bin/

Happy Hacking