pureadmin command not found

In this troubleshooting guide we learn how to fix pureadmin command not found error message

Introduction

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

pureadmin: command not found

or when using sudo you get the following error message

sudo: pureadmin: command not found

Solutions to pureadmin: command not found

How To Fix pureadmin: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu pureadmin is provided by pureadmin package.

pureadmin is:

PureAdmin is a Gtk 2.x GUI over PureFTPd that aims to make easier the task of configuring said FTP server.

PureAdmin has been writen not as a complete replacement of hand-crafted configuration, but as a tool that provides help and sane defaults. It will be helpful mainly for those not familiar with all the functionality of PureFTPd. By now, PureAdmin can right now be used to:

  • Manage users
  • Monitorize activities (download, upload, online users)
  • Monitorize log files
  • Real time control (kick users out, close connections, etc)

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

sudo apt-get -y install pureadmin

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

You can also use apt command to install pureadmin.

sudo apt -y install pureadmin

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

sudo aptitude install pureadmin

Summary

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