rpki-client command not found

In this troubleshooting guide we learn how to fix rpki-client command not found error message

Introduction

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

rpki-client: command not found

or when using sudo you get the following error message

sudo: rpki-client: command not found

Solutions to rpki-client: command not found

How To Fix rpki-client: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu rpki-client is provided by rpki-client package.

rpki-client is:

rpki-client is an RPKI relying party software: it downloads and validates the RPKI repositories.

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

sudo apt-get -y install rpki-client

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

You can also use apt command to install rpki-client.

sudo apt -y install rpki-client

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

sudo aptitude install rpki-client

Summary

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