oidentd command not found

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

Introduction

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

oidentd: command not found

or when using sudo you get the following error message

sudo: oidentd: command not found

Solutions to oidentd: command not found

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

In Ubuntu oidentd is provided by oidentd package.

oidentd is:

An ident (rfc1413) daemon for IPv4 and IPv6.

Oidentd allows users, given the proper permission, to specify the identd response that the server will output when a successful lookup is completed. Oidentd also allows for pseudo-random strings (either a prefix, such as “user,” followed by a number between 0 and 99999, or 10 pseudo-random characters of the set 0-9A-Za-z) to be returned upon the completion of a successful lookup instead of a username or a UID.

Oidentd supports IPv4 masqueraded connections, including netfilter.

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

sudo apt-get -y install oidentd

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

You can also use apt command to install oidentd.

sudo apt -y install oidentd

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

sudo aptitude install oidentd

Summary

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