How To Install dose-builddebcheck on Kali Linux
Introduction
In this tutorial we learn how to install dose-builddebcheck
on Kali Linux.
What is dose-builddebcheck
dose-builddebcheck is:
This software checks, given a collection of source package stanzas and a collection of binary package stanzas of Debian packages, whether the build-dependencies of each source package can be satisfied by the binary packages.
There are three methods to install dose-builddebcheck
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install dose-builddebcheck Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install dose-builddebcheck
using apt-get
by running the following command:
sudo apt-get -y install dose-builddebcheck
Install dose-builddebcheck Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install dose-builddebcheck
using apt
by running the following command:
sudo apt -y install dose-builddebcheck
Install dose-builddebcheck Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install dose-builddebcheck
using aptitude
by running the following command:
sudo aptitude -y install dose-builddebcheck
How To Uninstall dose-builddebcheck on Kali Linux
To uninstall only the dose-builddebcheck
package we can use the following command:
sudo apt-get remove dose-builddebcheck
Uninstall dose-builddebcheck And Its Dependencies
To uninstall dose-builddebcheck
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove dose-builddebcheck
Remove dose-builddebcheck Configurations and Data
To remove dose-builddebcheck
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge dose-builddebcheck
Remove dose-builddebcheck configuration, data, and all of its dependencies
We can use the following command to remove dose-builddebcheck
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge dose-builddebcheck
Dependencies
dose-builddebcheck have the following dependencies:
References
Summary
In this tutorial we learn how to install dose-builddebcheck
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.