How To Install linuxlogo on Debian 10
Introduction
In this tutorial we learn how to install linuxlogo
on Debian 10.
What is linuxlogo
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.
There are three methods to install linuxlogo
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install linuxlogo Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install linuxlogo
using apt-get
by running the following command:
sudo apt-get -y install linuxlogo
Install linuxlogo Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install linuxlogo
using apt
by running the following command:
sudo apt -y install linuxlogo
Install linuxlogo Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install linuxlogo
using aptitude
by running the following command:
sudo aptitude -y install linuxlogo
How To Uninstall linuxlogo on Debian 10
To uninstall only the linuxlogo
package we can use the following command:
sudo apt-get remove linuxlogo
Uninstall linuxlogo And Its Dependencies
To uninstall linuxlogo
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove linuxlogo
Remove linuxlogo Configurations and Data
To remove linuxlogo
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge linuxlogo
Remove linuxlogo configuration, data, and all of its dependencies
We can use the following command to remove linuxlogo
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge linuxlogo
Dependencies
linuxlogo have the following dependencies:
References
Summary
In this tutorial we learn how to install linuxlogo
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.