How To Install haruna on Kali Linux

In this tutorial we learn how to install haruna on Kali Linux. haruna is Video player built with Qt/QML on top of libmpv

Introduction

In this tutorial we learn how to install haruna on Kali Linux.

What is haruna

haruna is:

Haruna is an open source video player built with Qt/QML on top of libmpv.

Compared with other video player frontends, it provides some special features, such as:

  • play online videos, through youtube-dl
  • toggle playlist with mouse-over, playlist overlays the video
  • auto skip chapter containing certain words
  • configurable shortcuts and mouse buttons
  • quick jump to next chapter by middle click on progress bar

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

Install haruna Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install haruna

Install haruna Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install haruna

Install haruna Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install haruna

How To Uninstall haruna on Kali Linux

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

sudo apt-get remove haruna

Uninstall haruna And Its Dependencies

To uninstall haruna and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove haruna

Remove haruna Configurations and Data

To remove haruna configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge haruna

Remove haruna configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge haruna

Dependencies

haruna have the following dependencies:

References

Summary

In this tutorial we learn how to install haruna package on Kali Linux using different package management tools: apt, apt-get and aptitude.