How To Install libbisho-common-dev on Debian 9
Introduction
In this tutorial we learn how to install libbisho-common-dev
on Debian 9.
What is libbisho-common-dev
libbisho-common-dev is:
bisho is the settings front-end for Meego web services. Users can use bisho to set the account information for web services like Last.fm or Twitter.
libbisho-common is the library to interact with the bisho application.
This package contains the development headers.
There are three methods to install libbisho-common-dev
on Debian 9. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libbisho-common-dev Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libbisho-common-dev
using apt-get
by running the following command:
sudo apt-get -y install libbisho-common-dev
Install libbisho-common-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libbisho-common-dev
using apt
by running the following command:
sudo apt -y install libbisho-common-dev
Install libbisho-common-dev 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 libbisho-common-dev
using aptitude
by running the following command:
sudo aptitude -y install libbisho-common-dev
How To Uninstall libbisho-common-dev on Debian 9
To uninstall only the libbisho-common-dev
package we can use the following command:
sudo apt-get remove libbisho-common-dev
Uninstall libbisho-common-dev And Its Dependencies
To uninstall libbisho-common-dev
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove libbisho-common-dev
Remove libbisho-common-dev Configurations and Data
To remove libbisho-common-dev
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge libbisho-common-dev
Remove libbisho-common-dev configuration, data, and all of its dependencies
We can use the following command to remove libbisho-common-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libbisho-common-dev
Dependencies
libbisho-common-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libbisho-common-dev
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.