UEFITool command not found

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

Introduction

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

UEFITool: command not found

or when using sudo you get the following error message

sudo: UEFITool: command not found

Solutions to UEFITool: command not found

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

In Ubuntu UEFITool is provided by uefitool package.

uefitool is:

UEFITool is a cross-platform C++/Qt program for parsing, extracting and modifying UEFI firmware images.

It supports parsing of full BIOS images starting with the flash descriptor or any binary files containing UEFI volumes.

This package contains the GUI utility, UEFITool. For the CLI versions, see uefitool-cli.

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

sudo apt-get -y install uefitool

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

You can also use apt command to install uefitool.

sudo apt -y install uefitool

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

sudo aptitude install uefitool

Summary

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