gssproxy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gssproxy: command not found
or when using sudo you get the following error message
sudo: gssproxy: command not found
Solutions to gssproxy: command not found
How To Fix gssproxy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gssproxy is provided by gssproxy package.
gssproxy is:
Applications can choose to use GSS-Proxy for GSSAPI credential management, which means that they will not have direct access to the credentials themselves. GSSAPI operations are also offloaded to the gssproxy daemon, making it suitable for upcalls from the Kernel as well.
This package includes both the gssproxy daemon itself and the GSSAPI interposer layer for existing applications.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gssproxy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gssproxy.
sudo apt -y install gssproxy
Or if you have aptitude installed you can use the following command.
sudo aptitude install gssproxy
Summary
In this tutorial we learn how to fix gssproxy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.