aespasswd command not found

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

Introduction

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

aespasswd: command not found

or when using sudo you get the following error message

sudo: aespasswd: command not found

Solutions to aespasswd: command not found

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

In Ubuntu aespasswd is provided by i2util-tools package.

i2util-tools is:

I2utils is a small support library with a set of command line tools needed by several software projects from Internet2, most notably bwctl.

This package contains the command line tools.

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

sudo apt-get -y install i2util-tools

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

You can also use apt command to install i2util-tools.

sudo apt -y install i2util-tools

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

sudo aptitude install i2util-tools

Summary

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