How To Install libnice.i686 on Amazon Linux 2

In this tutorial we learn how to install libnice.i686 in Amazon Linux 2. libnice.i686 is GLib ICE implementation

Introduction

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

What is libnice.i686

libnice is an implementation of the IETF’s draft Interactive Connectivity Establishment standard (ICE). ICE is useful for applications that want to establish peer-to-peer UDP data streams. It automates the process of traversing NATs and provides security against some attacks. Existing standards that use ICE include the Session Initiation Protocol (SIP) and Jingle, XMPP extension for audio/video calls.

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

Install libnice.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 libnice.i686 using yum by running the following command:

sudo yum -y install libnice.i686

How To Uninstall libnice.i686 on Amazon Linux 2

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

sudo yum remove libnice.i686

libnice.i686 Package Contents on Amazon Linux 2

/usr/bin/stunbdc
/usr/bin/stund
/usr/lib/gstreamer-0.10/libgstnice010.so
/usr/lib/gstreamer-1.0/libgstnice.so
/usr/lib/libnice.so.10
/usr/lib/libnice.so.10.1.0
/usr/share/doc/libnice-0.1.3
/usr/share/doc/libnice-0.1.3/COPYING
/usr/share/doc/libnice-0.1.3/COPYING.LGPL
/usr/share/doc/libnice-0.1.3/COPYING.MPL
/usr/share/doc/libnice-0.1.3/NEWS
/usr/share/doc/libnice-0.1.3/README

References

Summary

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