dhtnode command not found

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

Introduction

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

dhtnode: command not found

or when using sudo you get the following error message

sudo: dhtnode: command not found

Solutions to dhtnode: command not found

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

In Ubuntu dhtnode is provided by dhtnode package.

dhtnode is:

OpenDHT is a C++11 distributed hash table implementation. Feature list:

  • Distributed shared key->value data-store
  • Clean and powerful distributed map API with storage of arbitrary binary values of up to 56 KB.
  • Optional public key cryptography layer providing data signature and encryption (using GnuTLS).
  • IPv4 and IPv6 support.

This package contains the OpenDHT node binary.

To fix this problem, we can install more using the command below.

sudo apt-get -y install dhtnode

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install dhtnode.

sudo apt -y install dhtnode

Or if you have aptitude installed you can use the following command.

sudo aptitude install dhtnode

Summary

In this tutorial we learn how to fix dhtnode command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.