ncdc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ncdc: command not found
or when using sudo you get the following error message
sudo: ncdc: command not found
Solutions to ncdc: command not found
How To Fix ncdc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ncdc is provided by ncdc package.
ncdc is:
Ncdc is a lightweight direct connect client with a friendly ncurses interface. It is compatible with EiskaltDC++, DC++, AirDC++, FlylinkDC++ and other DC clients. Ncdc also interoperates with all common DC hub software that uses the Direct Connect and Advanced Direct Connect protocols.
Program is NOT designed for using as daemon, but it may be used in combination with a separate terminal multiplexer (screen, tmux) or detach utility (dtach) if user needs such feature.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ncdc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ncdc.
sudo apt -y install ncdc
Or if you have aptitude installed you can use the following command.
sudo aptitude install ncdc
Summary
In this tutorial we learn how to fix ncdc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.