kdb3_sqlite3_dump command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kdb3_sqlite3_dump: command not found
or when using sudo you get the following error message
sudo: kdb3_sqlite3_dump: command not found
Solutions to kdb3_sqlite3_dump: command not found
How To Fix kdb3_sqlite3_dump: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kdb3_sqlite3_dump is provided by libkdb3-driver-sqlite package.
libkdb3-driver-sqlite is:
KDb is a database connectivity and creation framework, consisted of a general-purpose C++ Qt library and set of plugins delivering support for various database vendors.
This package contains the support for SQLite in KDb.
This package is part of the Calligra Suite.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libkdb3-driver-sqlite
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libkdb3-driver-sqlite.
sudo apt -y install libkdb3-driver-sqlite
Or if you have aptitude installed you can use the following command.
sudo aptitude install libkdb3-driver-sqlite
Summary
In this tutorial we learn how to fix kdb3_sqlite3_dump command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.