bdump command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
bdump: command not found
or when using sudo you get the following error message
sudo: bdump: command not found
Solutions to bdump: command not found
How To Fix bdump: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu bdump is provided by libbiniou-ocaml-dev package.
libbiniou-ocaml-dev is:
Biniou is a binary data format designed for speed, safety, ease of use and backward compatibility as protocols evolve. Biniou is vastly equivalent to JSON in terms of functionality but allows implementations about 4 times as fast (see godi-yojson for comparison), with 25-35% space savings. Biniou data can be decoded into human-readable form without knowledge of type definitions except for field and variant names which are represented by 31-bit hashes.
This package contains the development files needed for programming with the library.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libbiniou-ocaml-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libbiniou-ocaml-dev.
sudo apt -y install libbiniou-ocaml-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libbiniou-ocaml-dev
Summary
In this tutorial we learn how to fix bdump command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.