bcop command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bcop: command not found
or when using sudo you get the following error message
sudo: bcop: command not found
Solutions to bcop: command not found
How To Fix bcop: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bcop is provided by compiz-bcop package.
compiz-bcop is:
Compiz Reloaded is the result of the re-unification of the Beryl-project and the community around the Compiz Window Manager. It seeks to provide an easy and fun-to-use windowing environment, allowing use of the graphics hardware to provide impressive effects, amazing speed and unrivalled usefulness
This tool is used to generate code for use with compiz plugins.
To fix this problem, we can install more using the command below.
sudo apt-get -y install compiz-bcop
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install compiz-bcop.
sudo apt -y install compiz-bcop
Or if you have aptitude installed you can use the following command.
sudo aptitude install compiz-bcop
Summary
In this tutorial we learn how to fix bcop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.