How To Install linux_logo on CentOS 7

In this tutorial we learn how to install linux_logo on CentOS 7. linux_logo is Show a logo with some system info on the console

Introduction

In this tutorial we learn how to install linux_logo on CentOS 7.

Linux logo shows a logo, a colorful penguin by default, with some optional system info on the console. It’s typically used to generate issue and motd files or executed upon login.

We can use yum or dnf to install linux_logo on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install linux_logo.

Install linux_logo on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install linux_logo using yum by running the following command:

sudo yum -y install linux_logo

Install linux_logo on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install linux_logo using dnf by running the following command:

sudo dnf -y install linux_logo

How To Uninstall linux_logo on CentOS 7

To uninstall only the linux_logo package we can use the following command:

sudo dnf remove linux_logo

References

Summary

In this tutorial we learn how to install linux_logo on CentOS 7 using yum and dnf.