rqsh command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rqsh: command not found
or when using sudo you get the following error message
sudo: rqsh: command not found
Solutions to rqsh: command not found
How To Fix rqsh: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rqsh is provided by librdf-query-perl package.
librdf-query-perl is:
Resource Description Framework (RDF) is a standard model for data interchange on the Web.
RDF::Query allows SPARQL 1.1 and RDQL queries to be run against an RDF model, returning rows of matching results.
To fix this problem, we can install more using the command below.
sudo apt-get -y install librdf-query-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install librdf-query-perl.
sudo apt -y install librdf-query-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install librdf-query-perl
Summary
In this tutorial we learn how to fix rqsh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.