sbrsh command not found
In this troubleshooting guide we learn how to fix sbrsh command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
sbrsh: command not found
or when using sudo you get the following error message
sudo: sbrsh: command not found
Solutions to sbrsh: command not found
How To Fix sbrsh: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sbrsh is provided by sbrsh package.
sbrsh is:
sbrsh requests a sbrshd host to mount a nfs partition, and executes a binary on it. This used to provide cpu transparency for cross-compiling with scratchbox.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sbrsh
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sbrsh.
sudo apt -y install sbrsh
Or if you have aptitude installed you can use the following command.
sudo aptitude install sbrsh
Summary
In this tutorial we learn how to fix sbrsh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.