How To Install cclive on Kali Linux
Introduction
In this tutorial we learn how to install cclive on Kali Linux.
What is cclive
cclive is:
cclive is a lightweight command line video extraction tool for Youtube and other similar video websites. It is a rewrite of the clive software in C++ with lower system footprint and fewer dependencies.
cclive is primarily a “video download tool” but it can also be used along side with video player software, like “mplayer”, for viewing streamed videos instead of the Adobe flash player.
There are three methods to install cclive 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 cclive Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install cclive using apt-get by running the following command:
sudo apt-get -y install ccliveInstall cclive Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install cclive using apt by running the following command:
sudo apt -y install ccliveInstall cclive 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 cclive using aptitude by running the following command:
sudo aptitude -y install ccliveHow To Uninstall cclive on Kali Linux
To uninstall only the cclive package we can use the following command:
sudo apt-get remove ccliveUninstall cclive And Its Dependencies
To uninstall cclive and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ccliveRemove cclive Configurations and Data
To remove cclive configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ccliveRemove cclive configuration, data, and all of its dependencies
We can use the following command to remove cclive configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ccliveDependencies
cclive have the following dependencies:
- dpkg
- libboost-filesystem1.74.0
- libboost-program-options1.74.0
- libc6
- libcurl3-gnutls
- libgcc-s1
- libglib2.0-0
- libglibmm-2.4-1v5
- libpcrecpp0v5
- libquvi-0.9-0.9.3
- libstdc++6
References
Summary
In this tutorial we learn how to install cclive package on Kali Linux using different package management tools: apt, apt-get and aptitude.