How To Install celluloid on Kali Linux
Introduction
In this tutorial we learn how to install celluloid on Kali Linux.
What is celluloid
celluloid is:
GNOME MPV is a simple GTK+ frontend for mpv. GNOME MPV interacts with mpv via the client API exported by libmpv, allowing access to mpv’s powerful playback capabilities.
There are three methods to install celluloid 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 celluloid Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install celluloid using apt-get by running the following command:
sudo apt-get -y install celluloidInstall celluloid Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install celluloid using apt by running the following command:
sudo apt -y install celluloidInstall celluloid 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 celluloid using aptitude by running the following command:
sudo aptitude -y install celluloidHow To Uninstall celluloid on Kali Linux
To uninstall only the celluloid package we can use the following command:
sudo apt-get remove celluloidUninstall celluloid And Its Dependencies
To uninstall celluloid and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove celluloidRemove celluloid Configurations and Data
To remove celluloid configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge celluloidRemove celluloid configuration, data, and all of its dependencies
We can use the following command to remove celluloid configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge celluloidDependencies
celluloid have the following dependencies:
- libc6
- libcairo2
- libepoxy0
- libglib2.0-0
- libgtk-3-0
- libmpv1
- libpango-1.0-0
- libpangocairo-1.0-0
- dconf-gsettings-backend
References
Summary
In this tutorial we learn how to install celluloid package on Kali Linux using different package management tools: apt, apt-get and aptitude.