How To Install libnotify.i686 on Amazon Linux 2
Introduction
In this tutorial we learn how to install libnotify.i686
on Amazon Linux 2.
What is libnotify.i686
libnotify is a library for sending desktop notifications to a notification daemon, as defined in the freedesktop.org Desktop Notifications spec. These notifications can be used to inform the user about an event or display some form of information without getting in the user’s way.
We can use yum
to install libnotify.i686
on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install libnotify.i686.
Install libnotify.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 libnotify.i686
using yum
by running the following command:
sudo yum -y install libnotify.i686
How To Uninstall libnotify.i686 on Amazon Linux 2
To uninstall only the libnotify.i686
package we can use the following command:
sudo yum remove libnotify.i686
libnotify.i686 Package Contents on Amazon Linux 2
/usr/bin/notify-send
/usr/lib/girepository-1.0/Notify-0.7.typelib
/usr/lib/libnotify.so.4
/usr/lib/libnotify.so.4.0.0
/usr/share/doc/libnotify-0.7.7
/usr/share/doc/libnotify-0.7.7/AUTHORS
/usr/share/doc/libnotify-0.7.7/NEWS
/usr/share/licenses/libnotify-0.7.7
/usr/share/licenses/libnotify-0.7.7/COPYING
References
Summary
In this tutorial we learn how to install libnotify.i686
on Amazon Linux 2 using yum.