seahorse command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
seahorse: command not found
or when using sudo you get the following error message
sudo: seahorse: command not found
Solutions to seahorse: command not found
How To Fix seahorse: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu seahorse is provided by seahorse package.
seahorse is:
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
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install seahorse.
sudo apt -y install seahorse
Or if you have aptitude installed you can use the following command.
sudo aptitude install seahorse
Summary
In this tutorial we learn how to fix seahorse command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.