octorpki command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
octorpki: command not found
or when using sudo you get the following error message
sudo: octorpki: command not found
Solutions to octorpki: command not found
How To Fix octorpki: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu octorpki is provided by octorpki package.
octorpki is:
OctoRPKI is an RPKI relying party software: it can be used to download Resource Public Key Infrastructure (RFC 6480) certificates and validate them.
To fix this problem, we can install more using the command below.
sudo apt-get -y install octorpki
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install octorpki.
sudo apt -y install octorpki
Or if you have aptitude installed you can use the following command.
sudo aptitude install octorpki
Summary
In this tutorial we learn how to fix octorpki command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.