> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Show CPU Details Beautifully in Linux Terminal With CPUFetch
- URL: https://itsfoss.com/cpufetch/
- Published: 2021-04-06T09:35:08.000Z
- Updated: 2024-01-31T10:30:11.000Z
- Description: Display CPU details in beautiful ASCII format with this nifty CLI tool.
- Author: Abhishek Prakash
- Tags: Applications

There are [ways to check CPU information on Linux](https://linuxhandbook.com/check-cpu-info-linux/?ref=itsfoss.com). Probably the most common is the `lscpu` command that gives you plenty of information about all the CPU cores on your system.

![lscpu command output](https://itsfoss.com/content/images/wordpress/2021/04/lscpu-command-output-800x415.png)

lscpu command output

You may find CPU information there without installing any additional packages. That works of course. However, I recently stumbled upon a new tool that displays the CPU details in Linux in a beautiful manner.

The ASCII art of the processor manufacturer makes it look cool.

![cpufetch for AMD processor](https://itsfoss.com/content/images/wordpress/2021/04/cpufetch-1-800x307.png)

This looks beautiful, isn’t it? This is similar to [Neofetch or Screenfetch tools that show the system information in beautiful ASCII art in Linux](https://itsfoss.com/display-linux-logo-in-ascii/). Similar to those tools, you can use CPUFetch if you are showcasing your desktop screenshot.

The tool outputs the ASCII art of the processor manufacturer, its name, microarchitecture, frequency, cores, threads, peak performance, cache sizes, [Advanced Vector Extensions](https://software.intel.com/content/www/us/en/develop/articles/introduction-to-intel-advanced-vector-extensions.html?ref=itsfoss.com), and more.

You can use custom colors apart from a few themes it provides. This gives you additional degree of freedom when you are ricing your desktop and want to color match all the elements on your Linux setup.

## Installing CPUFetch on Linux

Unfortunately, CPUFetch is rather new, and it is not included in your distribution’s repository. It doesn’t even provide ready to use DEB/RPM binaries, PPAs, Snap or Flatpak packages.

Arch Linux users can [find](https://aur.archlinux.org/packages/cpufetch-git?ref=itsfoss.com) it in [AUR](https://itsfoss.com/aur-arch-linux/) but for others, the only way forward here is to [build from source code](https://itsfoss.com/install-software-from-source-code/).

Don’t worry. Installation as well as removal is not that complicated. Let me show you the steps.

I am using Ubuntu and you would [need to install Git on Ubuntu first](https://itsfoss.com/install-git-ubuntu/). Some other distributions come preinstalled with it, if not use your distribution’s package manager to install it.

Now, clone the Git repository wherever you want. Home directory is fine as well.

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

Switch to the directory you just cloned:

```
cd cpufetch
```

You’ll see a make file here. Use it to compile the code.

```
make
```

![cpufetch installation](https://itsfoss.com/content/images/wordpress/2021/04/cpufetch-installation-800x410.png)

CPUFetch Installation

Now you’ll see a new executable file named `cpufetch`. You run this executable to display the CPU information in the terminal.

```
./cpufetch
```

This is what it showed for my system. AMD logo looks a lot cooler in ASCII, don’t you think?

![cpufetch showing CPU information in Linux terminal for itsfoss](https://itsfoss.com/content/images/wordpress/2021/04/cpufetch-for-itsfoss-800x335.png)

How do you remove Cpufetch? It’s pretty simple. When you compiled the code, it produced just one file and that too in the same directory as the rest of the code.

So, to remove CPUFetch from your system, simply remove its entire folder. You know how to [remove a directory in Linux terminal](https://linuxhandbook.com/remove-files-directories/?ref=itsfoss.com), don’t you? Come out of the cpufetch directory and use the rm command:

```
rm -rf cpufetch
```

That was simple, thankfully because removing software installed from source code could be really tricky at times.

Back to cpufetch. I think it’s a utility for those who like to show off their desktop screenshots in various Linux group. Since we have [Neofetch](https://itsfoss.com/using-neofetch/) for the distribution and CPUFetch for CPU, I wonder if we could have a GPU fetch with ASCII art of Nvidia as well :)