xxh32sum command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xxh32sum: command not found
or when using sudo you get the following error message
sudo: xxh32sum: command not found
Solutions to xxh32sum: command not found
How To Fix xxh32sum: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xxh32sum is provided by xxhash package.
xxhash is:
xxHash is an Extremely fast Hash algorithm, running at RAM speed limits. It successfully completes the SMHasher test suite which evaluates collision, dispersion and randomness qualities of hash functions. Code is highly portable, and hashes are identical on all platforms (little / big endian).
To fix this problem, we can install more using the command below.
sudo apt-get -y install xxhash
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xxhash.
sudo apt -y install xxhash
Or if you have aptitude installed you can use the following command.
sudo aptitude install xxhash
Summary
In this tutorial we learn how to fix xxh32sum command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.