How To Install gadmin-proftpd on Debian 9
Introduction
In this tutorial we learn how to install gadmin-proftpd on Debian 9.
What is gadmin-proftpd
gadmin-proftpd is:
gadmin-proftpd is a fast and easy to use GTK+ administration tool for the Proftpd standalone server.
gadmin-proftpd gives admins easy access to virtual hosting, 8 layers of security including chrooted users and encrypted transfers on both the data and/or control channels.
There are three methods to install gadmin-proftpd 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 gadmin-proftpd Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install gadmin-proftpd using apt-get by running the following command:
sudo apt-get -y install gadmin-proftpd
Install gadmin-proftpd Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install gadmin-proftpd using apt by running the following command:
sudo apt -y install gadmin-proftpd
Install gadmin-proftpd 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 gadmin-proftpd using aptitude by running the following command:
sudo aptitude -y install gadmin-proftpd
How To Uninstall gadmin-proftpd on Debian 9
To uninstall only the gadmin-proftpd package we can use the following command:
sudo apt-get remove gadmin-proftpd
Uninstall gadmin-proftpd And Its Dependencies
To uninstall gadmin-proftpd and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove gadmin-proftpd
Remove gadmin-proftpd Configurations and Data
To remove gadmin-proftpd configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge gadmin-proftpd
Remove gadmin-proftpd configuration, data, and all of its dependencies
We can use the following command to remove gadmin-proftpd configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gadmin-proftpd
Dependencies
gadmin-proftpd have the following dependencies:
- libatk1.0-0
- libc6
- libcairo2
- libfontconfig1
- libfreetype6
- libgdk-pixbuf2.0-0
- libglib2.0-0
- libgtk2.0-0
- libpango-1.0-0
- libpangocairo-1.0-0
- libpangoft2-1.0-0
- menu
- proftpd-basic
References
Summary
In this tutorial we learn how to install gadmin-proftpd package on Debian 9 using different package management tools: apt, apt-get and aptitude.