How To Install haruna on Kali Linux
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 updateAfter updating apt database, We can install haruna using apt-get by running the following command:
sudo apt-get -y install harunaInstall haruna Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install haruna using apt by running the following command:
sudo apt -y install harunaInstall 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 updateAfter updating apt database, We can install haruna using aptitude by running the following command:
sudo aptitude -y install harunaHow To Uninstall haruna on Kali Linux
To uninstall only the haruna package we can use the following command:
sudo apt-get remove harunaUninstall 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 harunaRemove haruna Configurations and Data
To remove haruna configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge harunaRemove 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 harunaDependencies
haruna have the following dependencies:
- kio
- libc6
- libgcc-s1
- libkf5configcore5
- libkf5configgui5
- libkf5configwidgets5
- libkf5coreaddons5
- libkf5filemetadata3
- libkf5i18n5
- libkf5kiocore5
- libkf5kiowidgets5
- libkf5xmlgui5
- libmpv1
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5qml5
- libqt5quick5
- libqt5quickcontrols2-5
- libqt5widgets5
- libstdc++6
- qtdeclarative-abi-5-15-2
- qml-module-org-kde-kirigami2
- qml-module-qt-labs-platform
- qml-module-qtquick-shapes
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.