How To Install nautilus-image-manipulator on Debian 9
Introduction
In this tutorial we learn how to install nautilus-image-manipulator on Debian 9.
What is nautilus-image-manipulator
nautilus-image-manipulator is:
This Nautilus extension lets you resize images and send them to friends and family, right from Nautilus.
Just right-click on any photo or group of photos, and an option will appear that launches Nautilus Image Manipulator.
A set of default settings make it easy to quickly resize pictures. You can also easily create your own profiles for later reuse.
There are three methods to install nautilus-image-manipulator 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-image-manipulator 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-image-manipulator using apt-get by running the following command:
sudo apt-get -y install nautilus-image-manipulator
Install nautilus-image-manipulator Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install nautilus-image-manipulator using apt by running the following command:
sudo apt -y install nautilus-image-manipulator
Install nautilus-image-manipulator 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-image-manipulator using aptitude by running the following command:
sudo aptitude -y install nautilus-image-manipulator
How To Uninstall nautilus-image-manipulator on Debian 9
To uninstall only the nautilus-image-manipulator package we can use the following command:
sudo apt-get remove nautilus-image-manipulator
Uninstall nautilus-image-manipulator And Its Dependencies
To uninstall nautilus-image-manipulator and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove nautilus-image-manipulator
Remove nautilus-image-manipulator Configurations and Data
To remove nautilus-image-manipulator configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge nautilus-image-manipulator
Remove nautilus-image-manipulator configuration, data, and all of its dependencies
We can use the following command to remove nautilus-image-manipulator configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge nautilus-image-manipulator
Dependencies
nautilus-image-manipulator have the following dependencies:
References
Summary
In this tutorial we learn how to install nautilus-image-manipulator package on Debian 9 using different package management tools: apt, apt-get and aptitude.