inspircd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
inspircd: command not found
or when using sudo you get the following error message
sudo: inspircd: command not found
Solutions to inspircd: command not found
How To Fix inspircd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu inspircd is provided by inspircd package.
inspircd is:
InspIRCd is a modular C++ IRC Daemon for several operating systems created to provide a stable, modern, lightweight irc server from scratch and provide a vast number of features in a modularised form using an advanced module API. By keeping the functionality of the main core to a minimum, the server is very stable, fast and customizable.
This package contains the daemon.
To fix this problem, we can install more using the command below.
sudo apt-get -y install inspircd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install inspircd.
sudo apt -y install inspircd
Or if you have aptitude installed you can use the following command.
sudo aptitude install inspircd
Summary
In this tutorial we learn how to fix inspircd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.