debocker command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
debocker: command not found
or when using sudo you get the following error message
sudo: debocker: command not found
Solutions to debocker: command not found
How To Fix debocker: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu debocker is provided by debocker package.
debocker is:
debocker builds Debian packages using docker. It is also capable to create bundles that can be shared to build the same package on a different machine.
To fix this problem, we can install more using the command below.
sudo apt-get -y install debocker
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install debocker.
sudo apt -y install debocker
Or if you have aptitude installed you can use the following command.
sudo aptitude install debocker
Summary
In this tutorial we learn how to fix debocker command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.