hsdump command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
hsdump: command not found
or when using sudo you get the following error message
sudo: hsdump: command not found
Solutions to hsdump: command not found
How To Fix hsdump: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu hsdump is provided by rsplib-tools package.
rsplib-tools is:
Reliable Server Pooling (RSerPool) is the IETF’s standard (RFC 5351 to RFC 5356) for a lightweight server pool and session management framework. It provides highly available pool management (that is registration handling and load distribution/balancing) by components called Registrar and a client-side/server-side API for accessing the service of a pool.
This package provides some test tools for RSerPool setups.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rsplib-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rsplib-tools.
sudo apt -y install rsplib-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install rsplib-tools
Summary
In this tutorial we learn how to fix hsdump command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.