seahorse-daemon command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
seahorse-daemon: command not found
or when using sudo you get the following error message
sudo: seahorse-daemon: command not found
Solutions to seahorse-daemon: command not found
How To Fix seahorse-daemon: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu seahorse-daemon is provided by seahorse-daemon package.
seahorse-daemon is:
This is the agent program for seahorse which keeps a temporary secure storage of your pass phrases.
Seahorse is a front end for GnuPG - the GNU Privacy Guard program - that integrates to the GNOME desktop. It is a tool for secure communications and data storage. Data encryption and digital signature creation can easily be performed through a GUI and Key Management operations can easily be carried out through an intuitive interface.
To fix this problem, we can install more using the command below.
sudo apt-get -y install seahorse-daemon
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install seahorse-daemon.
sudo apt -y install seahorse-daemon
Or if you have aptitude installed you can use the following command.
sudo aptitude install seahorse-daemon
Summary
In this tutorial we learn how to fix seahorse-daemon command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.