debomatic command not found

In this troubleshooting guide we learn how to fix debomatic command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

debomatic: command not found

or when using sudo you get the following error message

sudo: debomatic: command not found

Solutions to debomatic: command not found

How To Fix debomatic: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu debomatic is provided by debomatic package.

debomatic is:

Deb-o-Matic is an easy to use build machine for Debian source packages based on sbuild and schroot, written in Python.

It provides a simple tool to automate build of source packages with limited user interaction and a simple configuration. It has some useful features such as automatic update of chroots, automatic scan and selection of source packages to build and modules support.

It is meant to help developers to build their packages without worrying too much of compilation, since it will run in background and no user feedback is required during the whole process.

To fix this problem, we can install more using the command below.

sudo apt-get -y install debomatic

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install debomatic.

sudo apt -y install debomatic

Or if you have aptitude installed you can use the following command.

sudo aptitude install debomatic

Summary

In this tutorial we learn how to fix debomatic command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.