olecfexport command not found

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

Introduction

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

olecfexport: command not found

or when using sudo you get the following error message

sudo: olecfexport: command not found

Solutions to olecfexport: command not found

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

In Ubuntu olecfexport is provided by libolecf-utils package.

libolecf-utils is:

libolecf is a library to access the OLE 2 Compound File (OLECF) format.

This package contains tools to access data stored in OLECF files: olecfexport, olecfinfo, lecfmount.

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

sudo apt-get -y install libolecf-utils

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

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

sudo apt -y install libolecf-utils

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

sudo aptitude install libolecf-utils

Summary

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