rcsclean command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
rcsclean: command not found
or when using sudo you get the following error message
sudo: rcsclean: command not found
Solutions to rcsclean: command not found
How To Fix rcsclean: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rcsclean is provided by rcs package.
rcs is:
The Revision Control System (RCS) manages multiple revisions of files. RCS automates the storing, retrieval, logging, identification, and merging of revisions. RCS is useful for text that is revised frequently, for example programs, documentation, graphics, papers, and form letters.
Note: this package contains certain general-purpose commands (such as merge or ident) which may used by other programs installed on your system.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rcs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rcs.
sudo apt -y install rcs
Or if you have aptitude installed you can use the following command.
sudo aptitude install rcs
Summary
In this tutorial we learn how to fix rcsclean command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.