ngircd command not found

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

Introduction

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

ngircd: command not found

or when using sudo you get the following error message

sudo: ngircd: command not found

Solutions to ngircd: command not found

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

In Ubuntu ngircd is provided by ngircd package.

ngircd is:

This package provides ngIRCd, a lightweight Internet Relay Chat server for small or private networks. It is simple to configure, can cope with dynamic IP addresses, and supports IPv6 as well as SSL. It is written from scratch, not based on the original IRCd and quite portable.

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

sudo apt-get -y install ngircd

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

You can also use apt command to install ngircd.

sudo apt -y install ngircd

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

sudo aptitude install ngircd

Summary

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