pffinfo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pffinfo: command not found
or when using sudo you get the following error message
sudo: pffinfo: command not found
Solutions to pffinfo: command not found
How To Fix pffinfo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pffinfo is provided by pff-tools package.
pff-tools is:
Libpff is a library to access Personal Folder File (PFF) and Offline Folder File (OFF) formats. Those files formats are used by MS Outlook in PAB (Personal Address Book), PST (Personal Storage Table) and OST (Offline Storage Table) files.
This package contains tools to exports PAB, PST and OST files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pff-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pff-tools.
sudo apt -y install pff-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install pff-tools
Summary
In this tutorial we learn how to fix pffinfo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.