CPUFetch is a simple yet fancy CPU architecture fetching tool.
Support
cpufetch supports x86, x86_64 (Intel and AMD) and ARM.
| Platform | x86_64 | ARM | Notes |
|---|---|---|---|
| GNU/Linux | ✔️ | ✔️ | Best support |
| Windows | ✔️ | ❌ | Some information may be missing. Colors will be used if supported |
| Android | ❗ | ✔️ | Some information may be missing. Not tested under x86_64 |
| macOS | ✔️ | ❌ | Some information may be missing. Apple M1 support may be added in the future (see #47) |
Installation
Building from source
Just clone the repo and use make to compile it
git clone https://github.com/Dr-Noob/cpufetch
cd cpufetch
make
./cpufetch
The Makefile is designed to work on Linux, Windows and macOS.
Linux
There is a cpufetch package available in Arch Linux (cpufetch-git). If you are in another distribution, you can build cpufetch from source.
Windows
In the releases section you will find some cpufetch executables compiled for Windows. Just download and run it from Windows CMD. You can also build cpufetch from source.
macOS
You need to build cpufetch from source.
Android
termux app (terminal emulator)pkg install -y git make clang inside termux.git clone https://github.com/Dr-Noob/cpufetch
cd cpufetch
make
./cpufetch
Examples
Here are more examples of how cpufetch looks on different CPUs.
x86_64 CPUs
ARM CPUs
Colors & Style
By default, cpufetch will print the CPU art with the system colorscheme. However, you can always set a custom color scheme, either specifying Intel or AMD, or specifying the colors in RGB format:
./cpufetch –color intel (default color for Intel)
./cpufetch –color amd (default color for AMD)
./cpufetch –color 239,90,45:210,200,200:100,200,45:0,200,200 (example)
In the case of setting the colors using RGB, 4 colors must be given in with the format: [R,G,B:R,G,B:R,G,B:R,G,B]. These colors correspond to CPU art color (2 colors) and for the text colors (following 2). Thus, you can customize all the colors.
Implementation
See cpufetch programming documentation.
Bugs Or Improvements
There are many open issues in github (see issues). Feel free to open a new one report an issue or propose any improvement in cpufetch
I would like to thank Gonzalocl and OdnetninI for their help, running cpufetch in many different CPUs they have access to, which makes it easier to debug and check the correctness of cpufetch.
VirtualBox is a free, open-source, cross-platform virtualization application maintained by Oracle. It lets you run multiple…
PostgreSQL (also called Postgres) is a free, open-source, object-relational database management system with a strong reputation…
VMware Workstation Player is a mature, stable virtualization platform that lets you run multiple isolated operating…
A properly configured firewall is one of the most important layers of security for any internet-facing server. UFW (Uncomplicated Firewall) is a user-friendly front-end for managing iptables rules that ships pre-installed on Ubuntu. Its defaults are sensible: block all incoming connections, allow all outgoing connections. No outside traffic reaches your server unless you explicitly open a port. This guide covers how to configure a UFW firewall on Ubuntu 18.04, from setting default policies and application profiles to writing allow and deny rules for specific ports, IPs, and subnets. <strong>Prerequisite:</strong> You need sudo access. Configure UFW Firewall on Ubuntu: Defaults, SSH, and Application Profiles If UFW is not installed, add it with: bashsudo…
UFW (Uncomplicated Firewall) is a user-friendly front-end for managing iptables rules on Ubuntu. It ships pre-installed…
Apache Cassandra is a free, open-source NoSQL database designed for high availability and linear scalability with…