princeprocessor command not found

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

Introduction

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

princeprocessor: command not found

or when using sudo you get the following error message

sudo: princeprocessor: command not found

Solutions to princeprocessor: command not found

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

In Ubuntu princeprocessor is provided by princeprocessor package.

princeprocessor is:

Princeprocessor is a password candidate generator and can be thought of as an advanced combinator attack. Rather than taking as input two different wordlists and then outputting all the possible two word combinations though, princeprocessor only has one input wordlist and builds “chains” of combined words. These chains can have 1 to N words from the input wordlist concatenated together. The name PRINCE is used as an acronym and stands for PRobability INfinite Chained Elements, which are the building blocks of the algorithm.

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

sudo apt-get -y install princeprocessor

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

You can also use apt command to install princeprocessor.

sudo apt -y install princeprocessor

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

sudo aptitude install princeprocessor

Summary

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