uftp_keymgt command not found

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

Introduction

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

uftp_keymgt: command not found

or when using sudo you get the following error message

sudo: uftp_keymgt: command not found

Solutions to uftp_keymgt: command not found

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

In Ubuntu uftp_keymgt is provided by uftp package.

uftp is:

Utility for secure, reliable, and efficient file transfer to multiple receivers simultaneously. This is useful for distributing large files to a large number of receivers, and is especially useful for data distribution over a satellite link where the inherent delay makes any TCP based communication highly inefficient.

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

sudo apt-get -y install uftp

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

You can also use apt command to install uftp.

sudo apt -y install uftp

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

sudo aptitude install uftp

Summary

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