How To Install s3ql-dbg on Debian 9
Introduction
In this tutorial we learn how to install s3ql-dbg
on Debian 9.
What is s3ql-dbg
s3ql-dbg is:
S3QL is a file system that stores all its data online using storage services like Google Storage, Amazon S3 or OpenStack. S3QL effectively provides a hard disk of dynamic, infinite capacity that can be accessed from any computer with internet access.
S3QL is a standard conforming, full featured UNIX file system that is conceptually indistinguishable from any local file system. Furthermore, S3QL has additional features like compression, encryption, data de-duplication, immutable trees and snapshotting which make it especially suitable for online backup and archival.
In addition to accessing online storage services directoly, S3QL can also store its data underneath a regular mount point. This enables the use of S3QL with e.g. NFS, CIFS or sftp servers.
S3QL is designed to favor simplicity and elegance over performance and feature-creep. Care has been taken to make the source code as readable and serviceable as possible. Solid error detection and error handling have been included from the very first line, and S3QL comes with extensive automated test cases.
This package contains the debugging symbols as well as the extension built for the Python 3 debug interpreter.
There are three methods to install s3ql-dbg
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 s3ql-dbg Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install s3ql-dbg
using apt-get
by running the following command:
sudo apt-get -y install s3ql-dbg
Install s3ql-dbg Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install s3ql-dbg
using apt
by running the following command:
sudo apt -y install s3ql-dbg
Install s3ql-dbg 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 s3ql-dbg
using aptitude
by running the following command:
sudo aptitude -y install s3ql-dbg
How To Uninstall s3ql-dbg on Debian 9
To uninstall only the s3ql-dbg
package we can use the following command:
sudo apt-get remove s3ql-dbg
Uninstall s3ql-dbg And Its Dependencies
To uninstall s3ql-dbg
and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove s3ql-dbg
Remove s3ql-dbg Configurations and Data
To remove s3ql-dbg
configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge s3ql-dbg
Remove s3ql-dbg configuration, data, and all of its dependencies
We can use the following command to remove s3ql-dbg
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge s3ql-dbg
Dependencies
s3ql-dbg have the following dependencies:
References
Summary
In this tutorial we learn how to install s3ql-dbg
package on Debian 9 using different package management tools: apt
, apt-get
and aptitude
.