datacopy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
datacopy: command not found
or when using sudo you get the following error message
sudo: datacopy: command not found
Solutions to datacopy: command not found
How To Fix datacopy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu datacopy is provided by freetds-bin package.
freetds-bin is:
FreeTDS is an implementation of the Tabular DataStream protocol, used for connecting to MS SQL and Sybase servers over TCP/IP.
This package includes the command-line utilities shipped with FreeTDS.
To fix this problem, we can install more using the command below.
sudo apt-get -y install freetds-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install freetds-bin.
sudo apt -y install freetds-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install freetds-bin
Summary
In this tutorial we learn how to fix datacopy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.