How To Install bangarang on Debian 9

In this tutorial we learn how to install bangarang on Debian 9. bangarang is Multimedia player with a lightweight interface for KDE

Introduction

In this tutorial we learn how to install bangarang on Debian 9.

What is bangarang

bangarang is:

Offers a media??audio and video??player with a lightweight interface. Integrates with the Nepomuk Social Semantic Desktop, supports command line arguments, can play CDs and DVDs and audio streams. It also has basic keyboard shortcuts and allows users to manually manage playlists.

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

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

sudo apt-get update

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

sudo apt-get -y install bangarang

Install bangarang Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install bangarang

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

sudo aptitude -y install bangarang

How To Uninstall bangarang on Debian 9

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

sudo apt-get remove bangarang

Uninstall bangarang And Its Dependencies

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

sudo apt-get -y autoremove bangarang

Remove bangarang Configurations and Data

To remove bangarang configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge bangarang

Remove bangarang configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge bangarang

Dependencies

bangarang have the following dependencies:

References

Summary

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