ecdsasign command not found

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

Introduction

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

ecdsasign: command not found

or when using sudo you get the following error message

sudo: ecdsasign: command not found

Solutions to ecdsasign: command not found

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

In Ubuntu ecdsasign is provided by ecdsautils package.

ecdsautils is:

The package provides a series of tools to support, all on the basis of the uecc library the

  • generation
  • signing
  • verifification of keys for elliptic key cryptography.

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

sudo apt-get -y install ecdsautils

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

You can also use apt command to install ecdsautils.

sudo apt -y install ecdsautils

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

sudo aptitude install ecdsautils

Summary

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