How To Install libcurator-discovery-java on Debian 10
Introduction
In this tutorial we learn how to install libcurator-discovery-java
on Debian 10.
What is libcurator-discovery-java
libcurator-discovery-java is:
Curator is a set of Java libraries that make using Apache ZooKeeper much easier.
This package contains a service discovery implementation built on the Curator Framework.
There are three methods to install libcurator-discovery-java
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 libcurator-discovery-java Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libcurator-discovery-java
using apt-get
by running the following command:
sudo apt-get -y install libcurator-discovery-java
Install libcurator-discovery-java Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libcurator-discovery-java
using apt
by running the following command:
sudo apt -y install libcurator-discovery-java
Install libcurator-discovery-java 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 libcurator-discovery-java
using aptitude
by running the following command:
sudo aptitude -y install libcurator-discovery-java
How To Uninstall libcurator-discovery-java on Debian 10
To uninstall only the libcurator-discovery-java
package we can use the following command:
sudo apt-get remove libcurator-discovery-java
Uninstall libcurator-discovery-java And Its Dependencies
To uninstall libcurator-discovery-java
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libcurator-discovery-java
Remove libcurator-discovery-java Configurations and Data
To remove libcurator-discovery-java
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libcurator-discovery-java
Remove libcurator-discovery-java configuration, data, and all of its dependencies
We can use the following command to remove libcurator-discovery-java
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libcurator-discovery-java
Dependencies
libcurator-discovery-java have the following dependencies:
References
Summary
In this tutorial we learn how to install libcurator-discovery-java
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.