pskctool command not found

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

Introduction

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

pskctool: command not found

or when using sudo you get the following error message

sudo: pskctool: command not found

Solutions to pskctool: command not found

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

In Ubuntu pskctool is provided by pskctool package.

pskctool is:

OATH Toolkit provide components to build one-time password authentication systems. It contains shared C libraries, command line tools and a PAM module. Supported technologies include the event-based HOTP algorithm (RFC 4226), the time-based TOTP algorithm (RFC 6238), and Portable Symmetric Key Container (PSKC, RFC 6030) to manage secret key data. OATH stands for Open AuTHentication, which is the organization that specify the algorithms.

This package contains the OATH Toolkit “pskctool” command line tool.

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

sudo apt-get -y install pskctool

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

You can also use apt command to install pskctool.

sudo apt -y install pskctool

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

sudo aptitude install pskctool

Summary

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