wgdb command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
wgdb: command not found
or when using sudo you get the following error message
sudo: wgdb: command not found
Solutions to wgdb: command not found
How To Fix wgdb: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu wgdb is provided by whitedb package.
whitedb is:
WhiteDB is a lightweight NoSQL database library written in C, operating fully in main memory. There is no server process. Data is read and written directly from/to shared memory, no sockets are used between WhiteDB and the application program.
To fix this problem, we can install more using the command below.
sudo apt-get -y install whitedb
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install whitedb.
sudo apt -y install whitedb
Or if you have aptitude installed you can use the following command.
sudo aptitude install whitedb
Summary
In this tutorial we learn how to fix wgdb command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.