runoverssh command not found

In this troubleshooting guide we learn how to fix runoverssh command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

runoverssh: command not found

or when using sudo you get the following error message

sudo: runoverssh: command not found

Solutions to runoverssh: command not found

How To Fix runoverssh: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu runoverssh is provided by runoverssh package.

runoverssh is:

This program runs a Bash command/script over ssh in one or more hosts Feature

  • ask one global password for all connections
  • read commands from a script file instead
  • use the list of hosts from a file
  • use ssh directly instead of sshpass
  • save ssh output
  • disable ssh screen output
  • set custom ssh flags
  • set custom bash flags
  • save ssh output to a custom file

To fix this problem, we can install more using the command below.

sudo apt-get -y install runoverssh

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install runoverssh.

sudo apt -y install runoverssh

Or if you have aptitude installed you can use the following command.

sudo aptitude install runoverssh

Summary

In this tutorial we learn how to fix runoverssh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.