Install Neofetch on Raspberry Pi

Install Neofetch on Raspberry Pi

Neofetch is a command line tool that displays system information such as operating system, kernel, uptime, CPU, memory, etc. Neofetch is written using Bash command language and supports many different operating systems.

This tutorial shows how to install Neofetch on Raspberry Pi.

Connect to Raspberry Pi via SSH. Download Neofetch executable file from GitHub repository to the /usr/local/bin directory and add execute permission to the file.

sudo wget -O /usr/local/bin/neofetch https://raw.githubusercontent.com/dylanaraps/neofetch/master/neofetch
sudo chmod a+x /usr/local/bin/neofetch

Now Neofetch is available for all users. We can check version:

neofetch --version

We can run Neofetch by simply executing:

neofetch

It outputs system information of the Raspberry Pi.

Raspberry Pi System Information using Neofetch

If you decided to remove Neofetch, just delete executable file:

sudo rm -rf /usr/local/bin/neofetch

Leave a Comment

Cancel reply

Your email address will not be published.