tcbmgr command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tcbmgr: command not found
or when using sudo you get the following error message
sudo: tcbmgr: command not found
Solutions to tcbmgr: command not found
How To Fix tcbmgr: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tcbmgr is provided by tokyocabinet-bin package.
tokyocabinet-bin is:
Tokyo Cabinet is an efficient database library like GDBM and NDBM. It features hash database and B+ tree database and is developed as the successor of QDBM, for the purpose of the following three points: higher processing speed, smaller size of a database file, and simpler API.
This is the Tokyo Cabinet Database utilities package.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tokyocabinet-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tokyocabinet-bin.
sudo apt -y install tokyocabinet-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install tokyocabinet-bin
Summary
In this tutorial we learn how to fix tcbmgr command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.