combust command not found

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

Introduction

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

combust: command not found

or when using sudo you get the following error message

sudo: combust: command not found

Solutions to combust: command not found

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

In Ubuntu combust is provided by ruby-combustion package.

ruby-combustion is:

Ruby ‘combustion’ is a library to help you test your Rails Engines in a simple and effective manner, instead of creating a full Rails application in your spec or test folder.

It allows you to write your specs within the context of your engine, using only the parts of a Rails app you need.

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

sudo apt-get -y install ruby-combustion

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

You can also use apt command to install ruby-combustion.

sudo apt -y install ruby-combustion

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

sudo aptitude install ruby-combustion

Summary

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