uftpd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
uftpd: command not found
or when using sudo you get the following error message
sudo: uftpd: command not found
Solutions to uftpd: command not found
How To Fix uftpd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu uftpd is provided by uftp package.
uftp is:
Utility for secure, reliable, and efficient file transfer to multiple receivers simultaneously. This is useful for distributing large files to a large number of receivers, and is especially useful for data distribution over a satellite link where the inherent delay makes any TCP based communication highly inefficient.
To fix this problem, we can install more using the command below.
sudo apt-get -y install uftp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install uftp.
sudo apt -y install uftp
Or if you have aptitude installed you can use the following command.
sudo aptitude install uftp
Summary
In this tutorial we learn how to fix uftpd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.