olecfinfo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
olecfinfo: command not found
or when using sudo you get the following error message
sudo: olecfinfo: command not found
Solutions to olecfinfo: command not found
How To Fix olecfinfo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu olecfinfo 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 olecfinfo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.