rplaydsp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rplaydsp: command not found
or when using sudo you get the following error message
sudo: rplaydsp: command not found
Solutions to rplaydsp: command not found
How To Fix rplaydsp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rplaydsp is provided by rplay-client package.
rplay-client is:
This package contains the basic rplay clients (rplay, rptp). The clients are used to play sounds on the local host or remote systems.
RPlay allows sounds to be played to and from local and remote Unix systems. Sounds can be played with or without sending audio data over the network using either UDP or TCP/IP. RPlay audio servers can be configured to share sound files with each other.
Support for RPlay is included in several applications. These include xpilot, xlockmore, xboing, fvwm, and ctwm.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rplay-client
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rplay-client.
sudo apt -y install rplay-client
Or if you have aptitude installed you can use the following command.
sudo aptitude install rplay-client
Summary
In this tutorial we learn how to fix rplaydsp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.