myproxy-destroy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
myproxy-destroy: command not found
or when using sudo you get the following error message
sudo: myproxy-destroy: command not found
Solutions to myproxy-destroy: command not found
How To Fix myproxy-destroy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu myproxy-destroy is provided by myproxy package.
myproxy is:
MyProxy is open source software for managing X.509 Public Key Infrastructure (PKI) security credentials (certificates and private keys). MyProxy combines an online credential repository with an online certificate authority to allow users to securely obtain credentials when and where needed. Users run myproxy-logon to authenticate and obtain credentials, including trusted CA certificates and Certificate Revocation Lists (CRLs).
To fix this problem, we can install more using the command below.
sudo apt-get -y install myproxy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install myproxy.
sudo apt -y install myproxy
Or if you have aptitude installed you can use the following command.
sudo aptitude install myproxy
Summary
In this tutorial we learn how to fix myproxy-destroy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.