polenum command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
polenum: command not found
or when using sudo you get the following error message
sudo: polenum: command not found
Solutions to polenum: command not found
How To Fix polenum: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu polenum is provided by polenum package.
polenum is:
polenum is a Python script which uses the Impacket Library from CORE Security Technologies to extract the password policy information from a windows machine. This allows a non-windows (Linux, Mac OSX, BSD etc..) user to query the password policy of a remote windows box without the need to have access to a windows machine.
To fix this problem, we can install more using the command below.
sudo apt-get -y install polenum
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install polenum.
sudo apt -y install polenum
Or if you have aptitude installed you can use the following command.
sudo aptitude install polenum
Summary
In this tutorial we learn how to fix polenum command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.