sitecopy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sitecopy: command not found
or when using sudo you get the following error message
sudo: sitecopy: command not found
Solutions to sitecopy: command not found
How To Fix sitecopy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sitecopy is provided by sitecopy package.
sitecopy is:
Sitecopy is for copying locally stored websites to remote servers. With a single command, the program will synchronize a set of local files to a remote server by performing uploads and remote deletes as required. The aim is to remove the hassle of uploading and deleting individual files using an FTP client. Sitecopy will also optionally try to spot files you move locally, and move them remotely.
Sitecopy is designed to not care about what is actually on the remote server - it simply keeps a record of what it THINKS is in on the remote server, and works from that.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sitecopy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sitecopy.
sudo apt -y install sitecopy
Or if you have aptitude installed you can use the following command.
sudo aptitude install sitecopy
Summary
In this tutorial we learn how to fix sitecopy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.