pms command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pms: command not found
or when using sudo you get the following error message
sudo: pms: command not found
Solutions to pms: command not found
How To Fix pms: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pms is provided by pms package.
pms is:
PMS is an ncurses based client for Music Player Daemon. It aims to be accessible and highly configurable, with a light but powerful interface much like Vim, and supports custom colors, layouts, and key bindings
To fix this problem, we can install more using the command below.
sudo apt-get -y install pms
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pms.
sudo apt -y install pms
Or if you have aptitude installed you can use the following command.
sudo aptitude install pms
Summary
In this tutorial we learn how to fix pms command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.