linuxlogo command not found

In this troubleshooting guide we learn how to fix linuxlogo command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

linuxlogo: command not found

or when using sudo you get the following error message

sudo: linuxlogo: command not found

Solutions to linuxlogo: command not found

How To Fix linuxlogo: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu linuxlogo is provided by linuxlogo package.

linuxlogo is:

A Color ANSI Logo with some system information that can be displayed at system boot time or, with some local configuration, at the login prompt. Four different Logos are available:

  • Debian Swirl(default)
  • Debian Banner
  • Tux Classic and Banner

The Classic and Banner Logos are based on Larry Ewing’s Penguin. Monochrome ASCII versions of all the logos are included.

To fix this problem, we can install more using the command below.

sudo apt-get -y install linuxlogo

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install linuxlogo.

sudo apt -y install linuxlogo

Or if you have aptitude installed you can use the following command.

sudo aptitude install linuxlogo

Summary

In this tutorial we learn how to fix linuxlogo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.