How To Install ytcc on Kali Linux
Introduction
In this tutorial we learn how to install ytcc on Kali Linux.
What is ytcc
ytcc is:
ytcc is a command Line tool to keep track of your favourite YouTube channels without signing up for a Google account.
ytcc manages your defined channels and lets you update, view (with mpv), download videos while keeping track of watched videos.
Videos can be filtered with different criteria (date, channel name) in a batch way or within a minimal gui.
There are three methods to install ytcc 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 ytcc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install ytcc using apt-get by running the following command:
sudo apt-get -y install ytccInstall ytcc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install ytcc using apt by running the following command:
sudo apt -y install ytccInstall ytcc 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 ytcc using aptitude by running the following command:
sudo aptitude -y install ytccHow To Uninstall ytcc on Kali Linux
To uninstall only the ytcc package we can use the following command:
sudo apt-get remove ytccUninstall ytcc And Its Dependencies
To uninstall ytcc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove ytccRemove ytcc Configurations and Data
To remove ytcc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge ytccRemove ytcc configuration, data, and all of its dependencies
We can use the following command to remove ytcc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ytccDependencies
ytcc have the following dependencies:
References
Summary
In this tutorial we learn how to install ytcc package on Kali Linux using different package management tools: apt, apt-get and aptitude.