How To Install nautilus-actions on Debian 9

In this tutorial we learn how to install nautilus-actions on Debian 9. nautilus-actions is nautilus extension to configure programs to launch

Introduction

In this tutorial we learn how to install nautilus-actions on Debian 9.

What is nautilus-actions

nautilus-actions is:

Nautilus actions is an extension for Nautilus, the GNOME file manager. It allows the configuration of programs to be launched on files selected in the Nautilus interface.

There are three methods to install nautilus-actions 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 nautilus-actions Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install nautilus-actions using apt-get by running the following command:

sudo apt-get -y install nautilus-actions

Install nautilus-actions Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install nautilus-actions using apt by running the following command:

sudo apt -y install nautilus-actions

Install nautilus-actions 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 nautilus-actions using aptitude by running the following command:

sudo aptitude -y install nautilus-actions

How To Uninstall nautilus-actions on Debian 9

To uninstall only the nautilus-actions package we can use the following command:

sudo apt-get remove nautilus-actions

Uninstall nautilus-actions And Its Dependencies

To uninstall nautilus-actions and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove nautilus-actions

Remove nautilus-actions Configurations and Data

To remove nautilus-actions configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge nautilus-actions

Remove nautilus-actions configuration, data, and all of its dependencies

We can use the following command to remove nautilus-actions configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge nautilus-actions

Dependencies

nautilus-actions have the following dependencies:

References

Summary

In this tutorial we learn how to install nautilus-actions package on Debian 9 using different package management tools: apt, apt-get and aptitude.