kxd-add-client-key command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kxd-add-client-key: command not found
or when using sudo you get the following error message
sudo: kxd-add-client-key: command not found
Solutions to kxd-add-client-key: command not found
How To Fix kxd-add-client-key: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kxd-add-client-key is provided by kxd package.
kxd is:
kxd is a key exchange daemon, which serves blobs of data (keys) over https.
It can be used to get keys remotely instead of using local storage. The main use case is to get keys to open dm-crypt devices automatically, without having to store them on the local machine.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kxd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kxd.
sudo apt -y install kxd
Or if you have aptitude installed you can use the following command.
sudo aptitude install kxd
Summary
In this tutorial we learn how to fix kxd-add-client-key command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.