bloom command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bloom: command not found
or when using sudo you get the following error message
sudo: bloom: command not found
Solutions to bloom: command not found
How To Fix bloom: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bloom is provided by golang-github-dcso-bloom-cli package.
golang-github-dcso-bloom-cli is:
Bloom is a simple library that provides a very efficient implementation of Bloom filters for the Go language. This package provides a command line tool that can be used to easily create Bloom filters with desired capacity and false positive probability. Values can be added to filters through standard input, which makes it easy to use the tool in a pipeline workflow.
To fix this problem, we can install more using the command below.
sudo apt-get -y install golang-github-dcso-bloom-cli
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install golang-github-dcso-bloom-cli.
sudo apt -y install golang-github-dcso-bloom-cli
Or if you have aptitude installed you can use the following command.
sudo aptitude install golang-github-dcso-bloom-cli
Summary
In this tutorial we learn how to fix bloom command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.