How To Install gupnp on Rocky Linux 8
Introduction
In this tutorial we learn how to install gupnp
on Rocky Linux 8.
What is gupnp
GUPnP is an object-oriented open source framework for creating UPnP devices and control points, written in C using GObject and libsoup. The GUPnP API is intended to be easy to use, efficient and flexible.
We can use yum
or dnf
to install gupnp
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install gupnp.
Install gupnp on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install gupnp
using dnf
by running the following command:
sudo dnf -y install gupnp
Install gupnp on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install gupnp
using yum
by running the following command:
sudo yum -y install gupnp
How To Uninstall gupnp on Rocky Linux 8
To uninstall only the gupnp
package we can use the following command:
sudo dnf remove gupnp
gupnp Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/718ceef36f173620efa1d2c1b4ffb0f754ab18
/usr/lib/girepository-1.0/GUPnP-1.0.typelib
/usr/lib/libgupnp-1.0.so.4
/usr/lib/libgupnp-1.0.so.4.0.1
/usr/share/doc/gupnp
/usr/share/doc/gupnp/AUTHORS
/usr/share/doc/gupnp/README
/usr/share/licenses/gupnp
/usr/share/licenses/gupnp/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/a8
/usr/lib/.build-id/a8/66781174651cb7538e0c965e9db57851d1d872
/usr/lib64/girepository-1.0/GUPnP-1.0.typelib
/usr/lib64/libgupnp-1.0.so.4
/usr/lib64/libgupnp-1.0.so.4.0.1
/usr/share/doc/gupnp
/usr/share/doc/gupnp/AUTHORS
/usr/share/doc/gupnp/README
/usr/share/licenses/gupnp
/usr/share/licenses/gupnp/COPYING
References
Summary
In this tutorial we learn how to install gupnp
on Rocky Linux 8 using yum and dnf.