rsbench command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rsbench: command not found
or when using sudo you get the following error message
sudo: rsbench: command not found
Solutions to rsbench: command not found
How To Fix rsbench: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rsbench is provided by librsb-tools package.
librsb-tools is:
This is a library for sparse matrix computations featuring the Recursive Sparse Blocks (RSB) matrix format. This format allows cache efficient and multi-threaded (that is, shared memory parallel) operations on large sparse matrices. It provides the most common operations necessary to iterative solvers, like matrix-vector multiplication, triangular solution, rows/columns scaling, diagonal extraction / setting, blocks extraction, norm computation, formats conversion. The RSB format is especially well suited for symmetric and transposed multiplication variants.
This package contains the rsbench program for testing the functionality and performance of librsb.
To fix this problem, we can install more using the command below.
sudo apt-get -y install librsb-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install librsb-tools.
sudo apt -y install librsb-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install librsb-tools
Summary
In this tutorial we learn how to fix rsbench command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.