request-key command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
request-key: command not found
or when using sudo you get the following error message
sudo: request-key: command not found
Solutions to request-key: command not found
How To Fix request-key: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu request-key is provided by keyutils package.
keyutils is:
Keyutils is a set of utilities for managing the key retention facility in the kernel, which can be used by filesystems, block devices and more to gain and retain the authorization and encryption keys required to perform secure operations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install keyutils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install keyutils.
sudo apt -y install keyutils
Or if you have aptitude installed you can use the following command.
sudo aptitude install keyutils
Summary
In this tutorial we learn how to fix request-key command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.