How To Install seahorse-nautilus on Debian 9
Introduction
In this tutorial we learn how to install seahorse-nautilus on Debian 9.
What is seahorse-nautilus
seahorse-nautilus is:
Seahorse nautilus is an extension for nautilus which allows encryption and decryption of OpenPGP files using GnuPG - the GNU Privacy Guard program.
There are three methods to install seahorse-nautilus 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 seahorse-nautilus Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install seahorse-nautilus using apt-get by running the following command:
sudo apt-get -y install seahorse-nautilus
Install seahorse-nautilus Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install seahorse-nautilus using apt by running the following command:
sudo apt -y install seahorse-nautilus
Install seahorse-nautilus 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 seahorse-nautilus using aptitude by running the following command:
sudo aptitude -y install seahorse-nautilus
How To Uninstall seahorse-nautilus on Debian 9
To uninstall only the seahorse-nautilus package we can use the following command:
sudo apt-get remove seahorse-nautilus
Uninstall seahorse-nautilus And Its Dependencies
To uninstall seahorse-nautilus and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove seahorse-nautilus
Remove seahorse-nautilus Configurations and Data
To remove seahorse-nautilus configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge seahorse-nautilus
Remove seahorse-nautilus configuration, data, and all of its dependencies
We can use the following command to remove seahorse-nautilus configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge seahorse-nautilus
Dependencies
seahorse-nautilus have the following dependencies:
- libassuan0
- libatk1.0-0
- libc6
- libcairo-gobject2
- libcairo2
- libcryptui0a
- libdbus-1-3
- libdbus-glib-1-2
- libgck-1-0
- libgcr-base-3-1
- libgcr-ui-3-1
- libgdk-pixbuf2.0-0
- libglib2.0-0
- libgnome-keyring0
- libgpg-error0
- libgpgme11
- libgtk-3-0
- libnautilus-extension1a
- libnotify4
- libp11-kit0
- libpango-1.0-0
- libpangocairo-1.0-0
- dconf-gsettings-backend
References
Summary
In this tutorial we learn how to install seahorse-nautilus package on Debian 9 using different package management tools: apt, apt-get and aptitude.