sp32 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sp32: command not found
or when using sudo you get the following error message
sudo: sp32: command not found
Solutions to sp32: command not found
How To Fix sp32: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sp32 is provided by statsprocessor package.
statsprocessor is:
Statsprocessor is a word generator based on per-position Markov chains packed into a single stand-alone binary. It generates candidate words based on a Hashcat format .hcstat file by using this information to determine which letter is following which letter based on the analysis of the original input dictionary used to generate the .hcstat. The resulting words can then, for example, be postprocessed and fed into Hashcat or other password recovery tools.
To fix this problem, we can install more using the command below.
sudo apt-get -y install statsprocessor
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install statsprocessor.
sudo apt -y install statsprocessor
Or if you have aptitude installed you can use the following command.
sudo aptitude install statsprocessor
Summary
In this tutorial we learn how to fix sp32 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.