How To Install libcurl.i686 on Amazon Linux 2

In this tutorial we learn how to install libcurl.i686 in Amazon Linux 2. libcurl.i686 is A library for getting files from web servers

Introduction

In this tutorial we learn how to install libcurl.i686 on Amazon Linux 2.

What is libcurl.i686

libcurl is a free and easy-to-use client-side URL transfer library, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3 and RTSP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos4), file transfer resume, http proxy tunneling and more.

We can use yum to install libcurl.i686 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install libcurl.i686.

Install libcurl.i686 on Amazon Linux 2 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install libcurl.i686 using yum by running the following command:

sudo yum -y install libcurl.i686

How To Uninstall libcurl.i686 on Amazon Linux 2

To uninstall only the libcurl.i686 package we can use the following command:

sudo yum remove libcurl.i686

libcurl.i686 Package Contents on Amazon Linux 2

/usr/lib/libcurl.so.4
/usr/lib/libcurl.so.4.7.0
/usr/share/licenses/libcurl-7.79.1
/usr/share/licenses/libcurl-7.79.1/COPYING

References

Summary

In this tutorial we learn how to install libcurl.i686 on Amazon Linux 2 using yum.