ccl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ccl: command not found
or when using sudo you get the following error message
sudo: ccl: command not found
Solutions to ccl: command not found
How To Fix ccl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ccl is provided by cclive package.
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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cclive
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cclive.
sudo apt -y install cclive
Or if you have aptitude installed you can use the following command.
sudo aptitude install cclive
Summary
In this tutorial we learn how to fix ccl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.