evtinfo command not found

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

Introduction

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

evtinfo: command not found

or when using sudo you get the following error message

sudo: evtinfo: command not found

Solutions to evtinfo: command not found

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

In Ubuntu evtinfo is provided by libevt-utils package.

libevt-utils is:

libevt is a library to access the Windows Event Log (EVT) format.

This package contains tools to access data stored in EVT log files: evtexport, evtinfo.

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

sudo apt-get -y install libevt-utils

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

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

sudo apt -y install libevt-utils

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

sudo aptitude install libevt-utils

Summary

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