blame command not found

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

Introduction

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

blame: command not found

or when using sudo you get the following error message

sudo: blame: command not found

Solutions to blame: command not found

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

In Ubuntu blame is provided by rcs-blame package.

rcs-blame is:

Blame is the equivalent for CVS’s annotate command.

An annotated RCS file describes the revision and date in which each line was added to the file, and the author of each line.

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

sudo apt-get -y install rcs-blame

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

You can also use apt command to install rcs-blame.

sudo apt -y install rcs-blame

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

sudo aptitude install rcs-blame

Summary

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