nodeusers command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nodeusers: command not found
or when using sudo you get the following error message
sudo: nodeusers: command not found
Solutions to nodeusers: command not found
How To Fix nodeusers: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nodeusers is provided by uronode package.
uronode is:
URONode is a packet radio node front end for amateur radio operators. It provides a shell modelled after those of LinuxNode, AWZNode and Flexnode. It is capable of initiating connections to remote stations and exposing services installed on them to users.
To fix this problem, we can install more using the command below.
sudo apt-get -y install uronode
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install uronode.
sudo apt -y install uronode
Or if you have aptitude installed you can use the following command.
sudo aptitude install uronode
Summary
In this tutorial we learn how to fix nodeusers command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.