How To Install libbash-doc on Debian 10
Introduction
In this tutorial we learn how to install libbash-doc
on Debian 10.
What is libbash-doc
libbash-doc is:
libbash is a tool for managing bash scripts that contain functions you may want to use in various scripts. It provides mechanism to define dependencies between scripts and facility for script loading.
This package contains user and developer docs libbash
There are three methods to install libbash-doc
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 libbash-doc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libbash-doc
using apt-get
by running the following command:
sudo apt-get -y install libbash-doc
Install libbash-doc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libbash-doc
using apt
by running the following command:
sudo apt -y install libbash-doc
Install libbash-doc 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 libbash-doc
using aptitude
by running the following command:
sudo aptitude -y install libbash-doc
How To Uninstall libbash-doc on Debian 10
To uninstall only the libbash-doc
package we can use the following command:
sudo apt-get remove libbash-doc
Uninstall libbash-doc And Its Dependencies
To uninstall libbash-doc
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libbash-doc
Remove libbash-doc Configurations and Data
To remove libbash-doc
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libbash-doc
Remove libbash-doc configuration, data, and all of its dependencies
We can use the following command to remove libbash-doc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libbash-doc
Dependencies
libbash-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install libbash-doc
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.