regfexport command not found

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

Introduction

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

regfexport: command not found

or when using sudo you get the following error message

sudo: regfexport: command not found

Solutions to regfexport: command not found

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

In Ubuntu regfexport is provided by libregf-utils package.

libregf-utils is:

libregf is a library to access the Windows NT Registry File (REGF) format.

This package contains a few tools to work with data stored in registry files: regfexport, regfinfo, regfmount, regfreport.

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

sudo apt-get -y install libregf-utils

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

You can also use apt command to install libregf-utils.

sudo apt -y install libregf-utils

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

sudo aptitude install libregf-utils

Summary

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