Post

Ubuntu 24.04 - Fastfetch Install

Fastfetch: is a neofetch-like tool for fetching system information and displaying it in a visually appealing way. It is written mainly in C, with a focus on performance and customizability. Currently, it supports Linux, macOS, Windows 7+, Android, FreeBSD, OpenBSD, NetBSD, DragonFly, Haiku, and SunOS.

This tutorial explains how to install Fastfetch on Ubuntu 24.04. Anything later than 24.04 it can be installed using apt.

Install Fastfetch

Download tar.gz file from the Fastfetch Github repository:

1
wget -qO fastfetch.tar.gz https://github.com/fastfetch-cli/fastfetch/releases/latest/download/fastfetch-linux-amd64.tar.gz

Extract the file to /usr/local/bin directory:

1
sudo tar xf fastfetch.tar.gz --strip-components=3 -C /usr/local/bin fastfetch-linux-amd64/usr/bin/fastfetch

Fastfetch is available for all users. To check the version, use the following command:

1
fastfetch --version

The tar.gz file is no longer needed and can be removed:

1
rm -rf fastfetch.tar.gz

Testing Fastfetch

Run fastfetch command without any arguments:

1
fastfetch

To see what all the different arguments are:

1
fastfetch --help

Uninstall Fastfetch

To uninstall Fastfetch, delete the associated file:

1
sudo rm -rf /usr/local/bin/fastfetch
This post is licensed under CC BY 4.0 by the author.