How To Install haruna on Ubuntu 22.04
Introduction
In this tutorial we learn how to install haruna on Ubuntu 22.04.
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 Ubuntu 22.04. 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 first since aptitude is usually not installed by default on Ubuntu. 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 Ubuntu 22.04
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 Ubuntu 22.04, we can use the command below:
sudo apt-get -y autoremove haruna
Remove haruna Configurations and Data
To remove haruna configuration and data from Ubuntu 22.04 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
References
Summary
In this tutorial we learn how to install haruna package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.