How To Install gtkhash on Debian 10
Introduction
In this tutorial we learn how to install gtkhash on Debian 10.
What is gtkhash
gtkhash is:
GtkHash is a small GTK+ utility which allows users to compute message digests or checksums using the mhash library. Currently supported hash functions include MD5, MD6, SHA1, SHA256, SHA512, RIPEMD, TIGER and WHIRLPOOL.
There are three methods to install gtkhash on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install gtkhash Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install gtkhash using apt-get by running the following command:
sudo apt-get -y install gtkhash
Install gtkhash Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install gtkhash using apt by running the following command:
sudo apt -y install gtkhash
Install gtkhash Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install gtkhash using aptitude by running the following command:
sudo aptitude -y install gtkhash
How To Uninstall gtkhash on Debian 10
To uninstall only the gtkhash package we can use the following command:
sudo apt-get remove gtkhash
Uninstall gtkhash And Its Dependencies
To uninstall gtkhash and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove gtkhash
Remove gtkhash Configurations and Data
To remove gtkhash configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge gtkhash
Remove gtkhash configuration, data, and all of its dependencies
We can use the following command to remove gtkhash configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gtkhash
Dependencies
gtkhash have the following dependencies:
- libatk1.0-0
- libb2-1
- libc6
- libcairo-gobject2
- libcairo2
- libgcrypt20
- libgdk-pixbuf2.0-0
- libglib2.0-0
- libgtk-3-0
- libnettle6
- libpango-1.0-0
- libpangocairo-1.0-0
- zlib1g
References
Summary
In this tutorial we learn how to install gtkhash package on Debian 10 using different package management tools: apt, apt-get and aptitude.