aruba command not found

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

Introduction

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

aruba: command not found

or when using sudo you get the following error message

sudo: aruba: command not found

Solutions to aruba: command not found

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

In Ubuntu aruba is provided by ruby-aruba package.

ruby-aruba is:

Aruba is Cucumber extension for Command line applications written in any programming language. Features at a glance:

  • Test any command line application
  • Manipulate the file system
  • Create great HTML documentation based on your own Cucumber scenarios

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

sudo apt-get -y install ruby-aruba

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

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

sudo apt -y install ruby-aruba

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

sudo aptitude install ruby-aruba

Summary

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