How To Install gallery-uploader on Debian 9

In this tutorial we learn how to install gallery-uploader on Debian 9. gallery-uploader is graphical tool to upload pictures and videos to Gallery

Introduction

In this tutorial we learn how to install gallery-uploader on Debian 9.

gallery-uploader is:

Gallery-uploader is a program which makes it immediate to upload pictures and videos to Gallery installations; Gallery (http://gallery.menalto.com/) is an advanced web photo album organizer.

Gallery-uploader can be used in two ways:

  • as a standalone program, which allows the user to browse for files to upload
  • as a script for Nautilus (the default GNOME file manager): for this to work, the single user must enable it (see the manual for more info).

This program is currently only able to work with installations of Gallery version 2., not 1. or 3.*.

There are three methods to install gallery-uploader 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.

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

sudo apt-get update

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

sudo apt-get -y install gallery-uploader

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install gallery-uploader

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 gallery-uploader using aptitude by running the following command:

sudo aptitude -y install gallery-uploader

To uninstall only the gallery-uploader package we can use the following command:

sudo apt-get remove gallery-uploader

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

sudo apt-get -y autoremove gallery-uploader

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

sudo apt-get -y purge gallery-uploader

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

sudo apt-get -y autoremove --purge gallery-uploader

Dependencies

gallery-uploader have the following dependencies:

References

Summary

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