Linux_Logo - Print Color ANSI Logos of Linux Distributions
Jun 21, 2025 am 11:15 AMlinuxlogo or linux_logo is a tiny command line utility that generates a color ANSI picture of the Linux distribution logo with an uptime (shows system uptime) along with the other system information.
The linux_logo utility obtains system information from the /proc filesystem and generates ANSI images of various logos other than the host distribution logo.
The system information associated with the logo includes – the Linux Kernel Version, the Time when the Kernel was lastly Compiled, the Number/core of the processor, Speed, Manufacturer, and processor Generation. It also shows information about total physical RAM.
It is worth mentioning here that screenfetch and Neofetch are other tools of a similar kind, which show the distribution logo and more detailed and formatted system information.
linux_logo and Screenfetch should not be compared to each other. While the output of screenfetch is more formatted and detailed, linux_logo produce a maximum number of color ANSI diagram, and the option to format the output.
linux_logo is written primarily in C Programming Language, which displays the linux logo in an X Window System, and hence User Interface X11 aka X Window System should be installed. The software is released under GNU General Public License Version 2.0.
For the purpose of this article, we’re using the following testing environment to test the linux_logo utility.
<strong>Operating System</strong> : Debian Bullseye <strong>Processor</strong> : i5 / x86_64
Installing Linux Logo Utility in Linux
1. The linuxlogo package is available to install from the default package repository under all Linux distributions using apt, yum, or dnf package manager as shown below.
$ sudo apt install linuxlogo [On <strong>Debian, Ubuntu and Mint</strong>] $ sudo yum install linux_logo [On <strong>RHEL/CentOS/Fedora</strong> and <strong>Rocky/AlmaLinux</strong>] $ sudo emerge -a sys-apps/linuxlogo [On <strong>Gentoo Linux</strong>] $ sudo apk add linuxlogo [On <strong>Alpine Linux</strong>] $ sudo pacman -S linuxlogo [On <strong>Arch Linux</strong>] $ sudo zypper install linuxlogo [On <strong>OpenSUSE</strong>]
If the linuxlogo package isn’t available from the default repositories, then you need to build it from the source as shown.
$ git clone git://github.com/deater/linux_logo $ cd linux_logo $ ./configure $ make $ sudo make install
2. Once the linuxlogo package has been installed, you can run the command linuxlogo
to get the default logo for the distribution you are using.
# linux_logo OR # linuxlogo
3. Use the option [-a]
, not to print any fancy color. Useful if viewing linux_logo over a black and white terminal.
# linux_logo -a
4. Use the option [-l]
to print LOGO only and exclude all other System Information.
# linux_logo -l
5. The [-u]
switch will display system uptime.
# linux_logo -u
6. If you are interested in Load Average, use option [-y]
. You may use more than one option at a time.
# linux_logo -y
For more options and help on them, you may like to run.
# linux_logo -h
7. There are a lot of built-in Logos for various Linux distributions. You may see all those logos using the option -L list
switch.
# linux_logo -L list
Now you want to print any of the logos from the list, you may use -L NUM
or -L NAME
to display the selected logo.
- -L NUM – will print a logo with the number NUM (deprecated).
- -L NAME – will print the logo with the name NAME.
For example, to display AIX Logo, you may use the command:
# linux_logo -L 1 OR # linux_logo -L aix
Notice: The -L 1
in the command where 1 is the number at which the AIX logo appears in the list, where -L aix
is the name at which the AIX logo appears in the list.
Similarly, you may print any logo using these options, few examples to see.
# linux_logo -L 27 # linux_logo -L 21
This way, you can use any of the logos just by using the number or name, that is against it.
Some Useful Tricks of Linux_logo
8. You may like to print your Linux distribution logo at login. To print the default logo at login you may add the below line at the end of ~/.bashrc
the file.
if [ -f /usr/bin/linux_logo ]; then linux_logo; fi
Notice: If there aren’t any ~/.bashrc
file, you may need to create one under the user home directory.
9. After adding the above line, just log out and re-login again to see the default logo of your Linux distribution.
Also note, that you may print any logo, after login, simply by adding the below line.
if [ -f /usr/bin/linux_logo ]; then linux_logo -L <strong style="color: yellow;">num</strong>; fi
Important: Don’t forget to replace num with the number that is against the logo, you want to use.
10. You can also print your own logo by simply specifying the location of the logo as shown below.
# linux_logo -D /path/to/ASCII/logo
11. Print the logo on Network Login.
# /usr/local/bin/linux_logo > /etc/issue.net
You may like to use an ASCII logo if there is no support for color filled ANSI Logo as:
# /usr/local/bin/linux_logo -a > /etc/issue.net
12. Create a Penguin port – A set of ports to answer connection. To create a Penguin port Add the below line to the file /etc/services file.
penguin 4444/tcp penguin
Here ‘4444‘ is the port number that is currently free and not used by any resource. You may use a different port.
Also, add the below line to file /etc/inetd.conf file.
penguin stream tcp nowait root /usr/local/bin/linux_logo
Restart the service inetd as:
# killall -HUP inetd
Moreover, linux_logo can be used in bootup script to fool the attacker as well as you can play a prank with your friend. This is a nice tool and I might use it in some of my scripts to get output as per distribution basis.
Try it once and you won’t regret it. Let us know what you think of this utility and how it can be useful for you. Keep Connected! Keep Commenting. Like and share us and help us get spread.
The above is the detailed content of Linux_Logo - Print Color ANSI Logos of Linux Distributions. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Are you looking for good software to write mathematical equations? If so, this article provides the top 5 equation editors that you can easily install on your favorite Linux distribution.In addition to being compatible with different types of mathema

Linux administrators should be familiar with the command-line environment. Since GUI (Graphical User Interface) mode in Linux servers is not commonly installed.SSH may be the most popular protocol to enable Linux administrators to manage the servers

PPA is an important tool for Ubuntu users to expand their software sources. 1. When searching for PPA, you should visit Launchpad.net, confirm the official PPA in the project official website or document, and read the description and user comments to ensure its security and maintenance status; 2. Add PPA to use the terminal command sudoadd-apt-repositoryppa:/, and then run sudoaptupdate to update the package list; 3. Manage PPAs to view the added list through the grep command, use the --remove parameter to remove or manually delete the .list file to avoid problems caused by incompatibility or stopping updates; 4. Use PPA to weigh the necessity and prioritize the situations that the official does not provide or require a new version of the software.

Gogo is a remarkable tool to bookmark directories inside your Linux shell. It helps you create shortcuts for long and complex paths in Linux. This way, you no longer need to type or memorize lengthy paths on Linux.For example, if there's a directory

LXD is described as the next-generation container and virtual machine manager that offers an immersive for Linux systems running inside containers or as virtual machines. It provides images for an inordinate number of Linux distributions with support

How to quickly generate test files of a specified size? It can be achieved using command line tools or graphical software. On Windows, you can use fsutilfilecreatenew file name size to generate a file with a specified byte; macOS/Linux can use ddif=/dev/zeroof=filebs=1Mcount=100 to generate real data files, or use truncate-s100M files to quickly create sparse files. If you are not familiar with the command line, you can choose FSUtilGUI, DummyFileGenerator and other tool software. Notes include: pay attention to file system limitations (such as FAT32 file size upper limit), avoid overwriting existing files, and some programs may

Node Version Manager (NVM) is a simple bash script that helps manage multiple Node.js versions on your Linux system. It enables you to install various Node.js versions, view available versions for installation, and check already installed versions.NV

The key to installing dual systems in Linux and Windows is partitioning and boot settings. 1. Preparation includes backing up data and compressing existing partitions to make space; 2. Use Ventoy or Rufus to make Linux boot USB disk, recommend Ubuntu; 3. Select "Coexist with other systems" or manually partition during installation (/at least 20GB, /home remaining space, swap optional); 4. Check the installation of third-party drivers to avoid hardware problems; 5. If you do not enter the Grub boot menu after installation, you can use boot-repair to repair the boot or adjust the BIOS startup sequence. As long as the steps are clear and the operation is done properly, the whole process is not complicated.
