UEFIReplace command not found

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

Introduction

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

UEFIReplace: command not found

or when using sudo you get the following error message

sudo: UEFIReplace: command not found

Solutions to UEFIReplace: command not found

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

In Ubuntu UEFIReplace is provided by uefitool-cli package.

uefitool-cli 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 CLI utilities, UEFIPatch and UEFIReplace. For the GUI version, see uefitool.

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

sudo apt-get -y install uefitool-cli

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

You can also use apt command to install uefitool-cli.

sudo apt -y install uefitool-cli

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

sudo aptitude install uefitool-cli

Summary

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