pumactl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pumactl: command not found
or when using sudo you get the following error message
sudo: pumactl: command not found
Solutions to pumactl: command not found
How To Fix pumactl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pumactl is provided by puma package.
puma is:
Puma is a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack applications. Puma is intended for use in both development and production environments.
To fix this problem, we can install more using the command below.
sudo apt-get -y install puma
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install puma.
sudo apt -y install puma
Or if you have aptitude installed you can use the following command.
sudo aptitude install puma
Summary
In this tutorial we learn how to fix pumactl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.