aria_s3_copy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aria_s3_copy: command not found
or when using sudo you get the following error message
sudo: aria_s3_copy: command not found
Solutions to aria_s3_copy: command not found
How To Fix aria_s3_copy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aria_s3_copy is provided by mariadb-plugin-s3 package.
mariadb-plugin-s3 is:
The S3 storage engine allows one to archive MariaDB tables in Amazon S3 (or any third-party public or private cloud that implements S3 API), but still have them accessible in MariaDB in read-only mode.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mariadb-plugin-s3
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mariadb-plugin-s3.
sudo apt -y install mariadb-plugin-s3
Or if you have aptitude installed you can use the following command.
sudo aptitude install mariadb-plugin-s3
Summary
In this tutorial we learn how to fix aria_s3_copy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.