prxs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
prxs: command not found
or when using sudo you get the following error message
sudo: prxs: command not found
Solutions to prxs: command not found
How To Fix prxs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu prxs is provided by proftpd-dev package.
proftpd-dev is:
ProFTPD is a powerful modular FTP/SFTP/FTPS server. This File Transfer Protocol daemon supports also hidden directories, virtual hosts, and per-directory “.ftpaccess” files. It uses a single main configuration file, with a syntax similar to Apache.
Because of the advanced design, anonymous-FTP directories can have an arbitrary internal structure (bin, lib, etc, and special files are not needed). Advanced features such as multiple password files and upload/download ratios are also supported.
This package contains all files required to develop third-parties modules that can be loaded at run-time by means of DSO support.
To fix this problem, we can install more using the command below.
sudo apt-get -y install proftpd-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install proftpd-dev.
sudo apt -y install proftpd-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install proftpd-dev
Summary
In this tutorial we learn how to fix prxs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.