pollen command not found
In this troubleshooting guide we learn how to fix pollen command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
pollen: command not found
or when using sudo you get the following error message
sudo: pollen: command not found
Solutions to pollen: command not found
How To Fix pollen: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pollen is provided by pollen package.
pollen is:
Pollen is an Entropy-as-a-Service web server, providing random seeds. This can be performed over both cleartext http and encrypted https TLS connections.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pollen
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pollen.
sudo apt -y install pollen
Or if you have aptitude installed you can use the following command.
sudo aptitude install pollen
Summary
In this tutorial we learn how to fix pollen command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.