dirvish-runall command not found

In this troubleshooting guide we learn how to fix dirvish-runall command not found error message

Introduction

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

dirvish-runall: command not found

or when using sudo you get the following error message

sudo: dirvish-runall: command not found

Solutions to dirvish-runall: command not found

How To Fix dirvish-runall: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dirvish-runall is provided by dirvish package.

dirvish is:

A utility to maintain multiple backups on online storage, each backup is available as a sort of snapshot directory, where common files are shared between the different backup generations. It uses rsync to do the actual copying.

Backups can be made locally or over the network (using ssh).

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

sudo apt-get -y install dirvish

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

You can also use apt command to install dirvish.

sudo apt -y install dirvish

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

sudo aptitude install dirvish

Summary

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