voms-verify command not found

In this troubleshooting guide we learn how to fix voms-verify command not found error message

Introduction

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

voms-verify: command not found

or when using sudo you get the following error message

sudo: voms-verify: command not found

Solutions to voms-verify: command not found

How To Fix voms-verify: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu voms-verify is provided by voms-clients package.

voms-clients is:

The Virtual Organization Membership Service (VOMS) is an attribute authority which serves as central repository for VO user authorization information, providing support for sorting users into group hierarchies, keeping track of their roles and other attributes in order to issue trusted attribute certificates and SAML assertions used in the Grid environment for authorization purposes.

This package provides command line applications to access the VOMS services.

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

sudo apt-get -y install voms-clients

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

You can also use apt command to install voms-clients.

sudo apt -y install voms-clients

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

sudo aptitude install voms-clients

Summary

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