test_sandbox command not found

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

Introduction

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

test_sandbox: command not found

or when using sudo you get the following error message

sudo: test_sandbox: command not found

Solutions to test_sandbox: command not found

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

In Ubuntu test_sandbox is provided by mysql-sandbox package.

mysql-sandbox is:

MySQL Sandbox is a tool that installs one or more MySQL servers within seconds, easily, securely, and with full control.

Once installed, the sandbox is easily used and maintained, without using complex options.

Replicated and multiple sandboxes can be used individually or all at once.

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

sudo apt-get -y install mysql-sandbox

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

You can also use apt command to install mysql-sandbox.

sudo apt -y install mysql-sandbox

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

sudo aptitude install mysql-sandbox

Summary

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