deploy_to_remote_sandboxes command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
deploy_to_remote_sandboxes: command not found
or when using sudo you get the following error message
sudo: deploy_to_remote_sandboxes: command not found
Solutions to deploy_to_remote_sandboxes: command not found
How To Fix deploy_to_remote_sandboxes: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu deploy_to_remote_sandboxes 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 deploy_to_remote_sandboxes command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.