How To Install gogglesmm on Debian 10

Learn how to install gogglesmm on Debian 10 with this tutorial. gogglesmm is Goggles Music Manager

Introduction

In this tutorial we learn how to install gogglesmm on Debian 10.

What is gogglesmm

gogglesmm is:

Goggles Music Manager is a music collection manager and player that automatically categorizes your music files based on genre, artist, album, and song. It supports gapless playback and features easy tag editing.

There are three methods to install gogglesmm on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install gogglesmm Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install gogglesmm

Install gogglesmm Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gogglesmm using apt by running the following command:

sudo apt -y install gogglesmm

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

sudo aptitude -y install gogglesmm

How To Uninstall gogglesmm on Debian 10

To uninstall only the gogglesmm package we can use the following command:

sudo apt-get remove gogglesmm

Uninstall gogglesmm And Its Dependencies

To uninstall gogglesmm and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove gogglesmm

Remove gogglesmm Configurations and Data

To remove gogglesmm configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge gogglesmm

Remove gogglesmm configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge gogglesmm

Dependencies

gogglesmm have the following dependencies:

References

Summary

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