How To Install neon on CentOS 7
Introduction
In this tutorial we learn how to install neon
on CentOS 7.
What is neon
neon is an HTTP and WebDAV client library, with a C interface; providing a high-level interface to HTTP and WebDAV methods along with a low-level interface for HTTP request handling. neon supports persistent connections, proxy servers, basic, digest and Kerberos authentication, and has complete SSL support. neon is an HTTP and WebDAV client library, with a C interface; providing a high-level interface to HTTP and WebDAV methods along with a low-level interface for HTTP request handling. neon supports persistent connections, proxy servers, basic, digest and Kerberos authentication, and has complete SSL support.
We can use yum
or dnf
to install neon
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install neon.
Install neon on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install neon
using yum
by running the following command:
sudo yum -y install neon
Install neon 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 neon
using dnf
by running the following command:
sudo dnf -y install neon
How To Uninstall neon on CentOS 7
To uninstall only the neon
package we can use the following command:
sudo dnf remove neon
References
Summary
In this tutorial we learn how to install neon
on CentOS 7 using yum
and dnf
.