regripper command not found

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

Introduction

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

regripper: command not found

or when using sudo you get the following error message

sudo: regripper: command not found

Solutions to regripper: command not found

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

In Ubuntu regripper is provided by regripper package.

regripper is:

Regripper’s CLI tool can be used to surgically extract, translate, and display information (both data and metadata) from Registry-formatted files via plugins in the form of Perl-scripts. It allows the analyst to select a hive-file to parse and a plugin or a profile, which is a list of plugins to run against the given hive. The results go to STDOUT and can be redirected to a file, that the analyst designates.

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

sudo apt-get -y install regripper

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

You can also use apt command to install regripper.

sudo apt -y install regripper

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

sudo aptitude install regripper

Summary

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