How To Install gtk-gnutella on CentOS 7
Introduction
In this tutorial we learn how to install gtk-gnutella
on CentOS 7.
What is gtk-gnutella
Gtk-Gnutella is a GUI based Gnutella p2p servent. It’s a fully featured servent designed to share any type of file. Gtk-gnutella implements compressed gnutella net connections, ultrapeer and leaf nodes and uses Passive/Active Remote Queuing (PARQ), and other modern gnutella network features.
We can use yum
or dnf
to install gtk-gnutella
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install gtk-gnutella.
Install gtk-gnutella on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install gtk-gnutella
using yum
by running the following command:
sudo yum -y install gtk-gnutella
Install gtk-gnutella on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install gtk-gnutella
using dnf
by running the following command:
sudo dnf -y install gtk-gnutella
How To Uninstall gtk-gnutella on CentOS 7
To uninstall only the gtk-gnutella
package we can use the following command:
sudo dnf remove gtk-gnutella
References
Summary
In this tutorial we learn how to install gtk-gnutella
on CentOS 7 using yum
and dnf
.