ssr command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ssr: command not found
or when using sudo you get the following error message
sudo: ssr: command not found
Solutions to ssr: command not found
How To Fix ssr: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ssr is provided by soundscaperenderer-common package.
soundscaperenderer-common is:
The SoundScape Renderer (SSR) is a tool for real-time spatial audio reproduction providing a variety of rendering algorithms, e.g. Wave Field Synthesis, Higher-Order Ambisonics and binaural techniques.
This package contains common files for all flavours of SSR.
To fix this problem, we can install more using the command below.
sudo apt-get -y install soundscaperenderer-common
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install soundscaperenderer-common.
sudo apt -y install soundscaperenderer-common
Or if you have aptitude installed you can use the following command.
sudo aptitude install soundscaperenderer-common
Summary
In this tutorial we learn how to fix ssr command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.