fsvs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fsvs: command not found
or when using sudo you get the following error message
sudo: fsvs: command not found
Solutions to fsvs: command not found
How To Fix fsvs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fsvs is provided by fsvs package.
fsvs is:
FSVS is a backup/restore/versioning/deployment tool for whole directory trees or filesystems, with a Subversion repository as the backend. It can do overlays of multiple repositories, to achieve some content separation (base install, local modifications, etc.)
To fix this problem, we can install more using the command below.
sudo apt-get -y install fsvs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fsvs.
sudo apt -y install fsvs
Or if you have aptitude installed you can use the following command.
sudo aptitude install fsvs
Summary
In this tutorial we learn how to fix fsvs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.