trpc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
trpc: command not found
or when using sudo you get the following error message
sudo: trpc: command not found
Solutions to trpc: command not found
How To Fix trpc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu trpc is provided by moonshot-trust-router package.
moonshot-trust-router is:
Moonshot allows services using GSS-API applications to gain federated access to identities provided by other organizations. Moonshot uses EAP and RADIUS over TLS for authentication and federation and SAML for enhanced attribute exchange.
This package provides the trust router and associated commands. The trust router provides authenticated key exchange so that RADIUS proxies in one organization can connect to RADIUS servers (providing identities) in another organization.
To fix this problem, we can install more using the command below.
sudo apt-get -y install moonshot-trust-router
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install moonshot-trust-router.
sudo apt -y install moonshot-trust-router
Or if you have aptitude installed you can use the following command.
sudo aptitude install moonshot-trust-router
Summary
In this tutorial we learn how to fix trpc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.