How To Install gupnp on Fedora 34

gupnp is A framework for creating UPnP devices & control points A framework for creating UPnP devices & control points

Introduction

In this tutorial we learn how to install gupnp on Fedora 34.

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. gupnp 1.2.6 1.fc34 x86_64 102 k gupnp-1.2.6-1.fc34.src.rpm updates A framework for creating UPnP devices & control points http LGPLv2+ 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 Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install gupnp.

Install gupnp on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install gupnp

Install gupnp on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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 Fedora 34

To uninstall only the gupnp package we can use the following command:

sudo dnf remove gupnp

gupnp Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/23
/usr/lib/.build-id/23/a58a172ddf00db219001bd936c014609f70892
/usr/lib64/girepository-1.0/GUPnP-1.2.typelib
/usr/lib64/libgupnp-1.2.so.0
/usr/lib64/libgupnp-1.2.so.0.0.0
/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/b4
/usr/lib/.build-id/b4/c348dbec362759df01a9d7430db3f6041994d5
/usr/lib/girepository-1.0/GUPnP-1.2.typelib
/usr/lib/libgupnp-1.2.so.0
/usr/lib/libgupnp-1.2.so.0.0.0
/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/e8
/usr/lib/.build-id/e8/8872814824eb29f2459f783f26ce1673204cba
/usr/lib64/girepository-1.0/GUPnP-1.2.typelib
/usr/lib64/libgupnp-1.2.so.0
/usr/lib64/libgupnp-1.2.so.0.0.0
/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/fe
/usr/lib/.build-id/fe/814bed90b45c7727ae13e63cae8250a0be519d
/usr/lib/girepository-1.0/GUPnP-1.2.typelib
/usr/lib/libgupnp-1.2.so.0
/usr/lib/libgupnp-1.2.so.0.0.0
/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 Fedora 34 using yum and dnf.