How To Install neon on AlmaLinux 8

In this tutorial we learn how to install neon in AlmaLinux 8. neon is An HTTP and WebDAV client library

Introduction

In this tutorial we learn how to install neon on AlmaLinux 8.

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.

We can use yum or dnf to install neon on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install neon.

Install neon on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install neon using dnf by running the following command:

sudo dnf -y install neon

Install neon on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install neon using yum by running the following command:

sudo yum -y install neon

How To Uninstall neon on AlmaLinux 8

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 AlmaLinux 8 using yum and dnf.