Discover New Alternatives: Top Substitutes for Linux's Popular Deprecated Terminal Utility

Discover New Alternatives: Top Substitutes for Linux's Popular Deprecated Terminal Utility

Jeffrey Lv12

Key Takeaways

  • It’s time to say goodbye to neofetch, as the developer has abandoned the project due to farming commitments.
  • Fastfetch, macchina, NerdFetch, and others are viable alternatives offering new features and better maintenance.

If you’re a Linux user, you might know about neofetch, a popular command-line tool that shows system information in the terminal. Many users love it because it’s customizable and looks great. Unfortunately, the developer has discontinued the project, so it’s time to say goodbye to this helpful tool.

Is neofetch Dead?

Yes, it’s true—the neofetch project has been officially declared dead. Although the developer archived the project on April 26th, 2024, the last update was three years ago. The developer left a note in the README file stating he had taken up farming, which is the only explanation for the archiving.

neofetch’s abandonment doesn’t mean it will disappear immediately. Since it’s a Bash script, it will likely continue to work for a long time until the applications it relies on become outdated.

You can continue using neofetch if you wish, but be aware that it is no longer maintained or updated. Using outdated software can pose security risks, so I strongly advise against relying on expired or out-of-date tools. Instead, consider exploring alternative, actively supported options.

Alternatives to neofetch

neofetch’s abandonment might be sad, but it’s not the end. Explore alternatives like Fastfetch, macchina, and others, which offer new features and better maintenance.

Fastfetch

Fastfetch is a faster, lighter, and up-to-date alternative to neofetch. It is written mainly in C and compatible with various platforms like macOS, Linux, and Windows. Fastfetch is actively maintained with community support and regular updates. Furthermore, it is easy to install and provides more information than neofetch, including desktop environment, window theme, and font.

Fastfetch is not available by default in Debian or Ubuntu’s software repositories. You can manually install its more recent version by adding a PPA repository to Ubuntu.

sudo add-apt-repository ppa:zhangsongcui3371/fastfetch

Next, update your system’s package list and install Fastfetch.

sudo apt update && sudo apt install fastfetch

To get system information using Fastfetch, run:

fastfetch

Linux terminal displaying system information using fastfetch tool

You can install Fastfetch on Fedora, CentOS, and RHEL by running this command:

sudo yum install fastfetch

If you’re an Arch Linux user, use this:

sudo pacman -S fastfetch

Fastfetch displays your local IP address as well, so be careful when sharing your Fastfetch information screenshots with others.

macchina

macchina is a quick and easy tool for gathering information about your system. It’s a lightweight alternative to neofetch that’s all about speed and simplicity. It’s designed with customization in mind, allowing you to tailor your system information display to your preferences.

macchina has a theming system that lets you customize its appearance. You can create several themes and shift between them easily without affecting the main configuration.

Moreover, you have two options to get started with macchina: either download the pre-built binary from the Releases page and use it directly, or install it using Cargo, Rust’s package manager.

If you choose to install using Cargo, first install Cargo on your Linux PC. To install Cargo on Ubuntu, for instance, run:

sudo apt install cargo

Next, run the following command to install macchina:

cargo install macchina

Once installed, you can display your system information by running the ~/.cargo/bin/macchina command with your desired flags. However, this is not a practical approach for getting system information using macchina.

To avoid typing the full path to the macchina executable every time, you can add its installation directory to the PATH environment variable. This allows you to run macchina from any directory in your terminal.

You can do this by editing your user’s profile file. Simply open the file with gedit:

gedit ~/.profile

Next, add the “.cargo/bin” directory to your PATH.

Adding macchina directory path in user profile file.

Now, you can get system information directly using:

macchina

Linux terminal window showing system information by executing macchina

If you are an Arch Linux user, you can also install macchina from the AUR using Yay .

yay -S macchina

KoolReport Pro is an advanced solution for creating data reports and dashboards in PHP. Equipped with all extended packages , KoolReport Pro is able to connect to various datasources, perform advanced data analysis, construct stunning charts and graphs and export your beautiful work to PDF, Excel, JPG or other formats. Plus, it includes powerful built-in reports such as pivot report and drill-down report which will save your time in building ones.

It will help you to write dynamic data reports easily, to construct intuitive dashboards or to build a whole business intelligence cockpit.

KoolReport Pro package goes with Full Source Code, Royal Free, ONE (1) Year Priority Support, ONE (1) Year Free Upgrade and 30-Days Money Back Guarantee.

Developer License allows Single Developer to create Unlimited Reports, deploy on Unlimited Servers and able deliver the work to Unlimited Clients.

screenFetch

screenFetch is another handy terminal utility just like neofetch that displays system information in a terminal. In fact, screenFetch is older than neofetch. While it may not have the same level of visual appeal as some of the newer options, screenFetch is a reliable and well-established tool that gets the job done.

By running the screenfetch command, you can quickly display a snapshot of your system’s current state, including OS, kernel version, uptime, package counts, and more. You can also screenshot the displayed output using screenfetch -s.

screenFetch is available in the default Ubuntu repositories. To get it, run:

sudo apt install screenfetch

Linux terminal window showing system information by executing screenfetch

Simple and intuitive video editing
🎬 Nero Video:
The powerful video editing program for your Windows PC

screenFetch also allows you to display a different ASCII art logo than the default one detected by screenFetch. You can simply specify a distribution name with the -A ‘distribution_name’ option like this:

screenfetch -A ‘Debian’

Linux terminal window showing debian ASCII art logo along with system information by using screenfetch tool

To get screenFetch on RHEL/CentOS/Fedora, run:

sudo dnf install screenfetch

On Arch Linux:

sudo pacman -S screenfetch

NerdFetch

NerdFetch is a POSIX-compliant fetch script that displays system information in a visually appealing format in the terminal. It utilizes Nerd fonts to enhance the visual presentation of system information.

Like other system information tools, NerdFetch also fetches and displays details such as your operating system name, version, and others. However, NerdFetch sets itself apart with its high level of customization, offering three distinct font modes for displaying system information, such as Cozette, Phosphor, and Emojis. You can switch between different fonts with the command-line options -c, -p, and -e.

To install NerdFetch, simply download its script from the GitHub repository using curl :

sudo curl -fsSL https://raw.githubusercontent.com/ThatOneCalculator/NerdFetch/main/nerdfetch -o /usr/bin/nerdfetch

After downloading, you need to make the script executable with:

sudo chmod +x /usr/bin/nerdfetch

To display your system information, run:

nerdfetch

Linux terminal showing system information in three different modes by using nerdfetch with flags

Arch users can get NerdFetch using any AUR helper like Yay or Paru:

yay -S nerdfetch

Customize Your Linux System for a Better Experience

Customizing your Linux system can be a fun and rewarding experience. Whether you want to create your own Linux distribution or tweak your existing setup, there are numerous ways to make your desktop your own. For example, you can personalize your existing Linux installation by changing desktop themes and adding new icons and fonts. Furthermore, you can also use Conky to customize your widgets that display different system information.

You can also use Ubuntu Tweaks to customize your Ubuntu system easily. It lets you change settings and customize your Linux desktop to your liking.

  • Title: Discover New Alternatives: Top Substitutes for Linux's Popular Deprecated Terminal Utility
  • Author: Jeffrey
  • Created at : 2024-08-30 16:48:12
  • Updated at : 2024-08-31 16:48:12
  • Link: https://eaxpv-info.techidaily.com/discover-new-alternatives-top-substitutes-for-linuxs-popular-deprecated-terminal-utility/
  • License: This work is licensed under CC BY-NC-SA 4.0.