tcumttest command not found

In this troubleshooting guide we learn how to fix tcumttest command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

tcumttest: command not found

or when using sudo you get the following error message

sudo: tcumttest: command not found

Solutions to tcumttest: command not found

How To Fix tcumttest: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu tcumttest 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 tcumttest command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.