How To Install continuity on Debian 10
Introduction
In this tutorial we learn how to install continuity
on Debian 10.
What is continuity
continuity is:
This project is a staging area for experiments in providing transport agnostic metadata storage.
Please see https://github.com/opencontainers/specs/issues/11 for more details.
There are three methods to install continuity
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 continuity Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install continuity
using apt-get
by running the following command:
sudo apt-get -y install continuity
Install continuity Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install continuity
using apt
by running the following command:
sudo apt -y install continuity
Install continuity 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 continuity
using aptitude
by running the following command:
sudo aptitude -y install continuity
How To Uninstall continuity on Debian 10
To uninstall only the continuity
package we can use the following command:
sudo apt-get remove continuity
Uninstall continuity And Its Dependencies
To uninstall continuity
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove continuity
Remove continuity Configurations and Data
To remove continuity
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge continuity
Remove continuity configuration, data, and all of its dependencies
We can use the following command to remove continuity
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge continuity
Dependencies
continuity have the following dependencies:
References
Summary
In this tutorial we learn how to install continuity
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.