How To Install vanessa_socket on CentOS 7
Introduction
In this tutorial we learn how to install vanessa_socket on CentOS 7.
What is vanessa_socket
Library to simplify TCP/IP socket operations. Includes code to open a socket to a server as a client, to listen on socket for clients as a server and to pipe information between sockets.
We can use yum or dnf to install vanessa_socket on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install vanessa_socket.
Install vanessa_socket on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install vanessa_socket using yum by running the following command:
sudo yum -y install vanessa_socket
Install vanessa_socket 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 vanessa_socket using dnf by running the following command:
sudo dnf -y install vanessa_socket
How To Uninstall vanessa_socket on CentOS 7
To uninstall only the vanessa_socket package we can use the following command:
sudo dnf remove vanessa_socket
References
Summary
In this tutorial we learn how to install vanessa_socket on CentOS 7 using yum and dnf.