cdb command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cdb: command not found
or when using sudo you get the following error message
sudo: cdb: command not found
Solutions to cdb: command not found
How To Fix cdb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cdb is provided by tinycdb package.
tinycdb is:
tinycdb is a small, fast and reliable utility and subroutine library for creating and reading constant databases. The database structure is tuned for fast reading.
This package contains a command-line utility to create, analyze, dump and query cdb files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tinycdb
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tinycdb.
sudo apt -y install tinycdb
Or if you have aptitude installed you can use the following command.
sudo aptitude install tinycdb
Summary
In this tutorial we learn how to fix cdb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.