pingpongclient command not found

In this troubleshooting guide we learn how to fix pingpongclient command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

pingpongclient: command not found

or when using sudo you get the following error message

sudo: pingpongclient: command not found

Solutions to pingpongclient: command not found

How To Fix pingpongclient: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu pingpongclient is provided by rsplib-services package.

rsplib-services 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 the rsplib RSerPool example services: Echo, Discard, Daytime, CharGen, CalcApp, FractalGenerator and ScriptingService.

To fix this problem, we can install more using the command below.

sudo apt-get -y install rsplib-services

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install rsplib-services.

sudo apt -y install rsplib-services

Or if you have aptitude installed you can use the following command.

sudo aptitude install rsplib-services

Summary

In this tutorial we learn how to fix pingpongclient command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.