lbcdclient command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lbcdclient: command not found
or when using sudo you get the following error message
sudo: lbcdclient: command not found
Solutions to lbcdclient: command not found
How To Fix lbcdclient: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lbcdclient is provided by lbcd package.
lbcd is:
lbcd is a daemon that answers UDP queries for system load information and returns such information as uptime, load, number of logged-in users, percentage free of /tmp and /var/tmp, and whether there is a user on the console. It is intended for use with a load balancing system, and is particularly useful for such things as UNIX clusters for remote login where a traditional hardware load balancing solution doesn’t work as well.
No load balancing system is included in this package, only the client daemon and a simple Perl script to query it. No security or access control is done by the daemon, so access control must be done via iptables, a firewall, or an equivalent system.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lbcd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lbcd.
sudo apt -y install lbcd
Or if you have aptitude installed you can use the following command.
sudo aptitude install lbcd
Summary
In this tutorial we learn how to fix lbcdclient command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.