pure-ftpwho command not found

In this troubleshooting guide we learn how to fix pure-ftpwho command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

pure-ftpwho: command not found

or when using sudo you get the following error message

sudo: pure-ftpwho: command not found

Solutions to pure-ftpwho: command not found

How To Fix pure-ftpwho: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu pure-ftpwho is provided by pure-ftpd-mysql package.

pure-ftpd-mysql is:

Pure-FTPd is a fast, production-quality, standards-conformant FTP server based upon Troll-FTPd. Features include chrooted home directories, virtual domains, built-in ’ls’, anti-warez system, configurable ports for passive downloads, FXP protocol, bandwidth throttling, ratios, fortune files, Apache-like log files, fast standalone mode, atomic uploads, text / HTML / XML real-time status report, virtual users, virtual quotas, privilege separation, SSL/TLS and more.

To fix this problem, we can install more using the command below.

sudo apt-get -y install pure-ftpd-mysql

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install pure-ftpd-mysql.

sudo apt -y install pure-ftpd-mysql

Or if you have aptitude installed you can use the following command.

sudo aptitude install pure-ftpd-mysql

Summary

In this tutorial we learn how to fix pure-ftpwho command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.