How To Install connman on Fedora 34

connman is An alternative daemon for managing internet connections on Linux An alternative daemon for managing internet connections on Linux

Introduction

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

What is connman

The ConnMan project provides a daemon for managing internet connections within embedded devices running the Linux operating system. The Connection Manager is designed to be slim and to use as few resources as possible, so it can be easily integrated. connman 1.34 13.fc34 x86_64 440 k connman-1.34-13.fc34.src.rpm fedora An alternative daemon for managing internet connections on Linux http GPLv2 The ConnMan project provides a daemon for managing internet connections within embedded devices running the Linux operating system. The Connection Manager is designed to be slim and to use as few resources as possible, so it can be easily integrated.

We can use yum or dnf to install connman on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install connman.

Install connman 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 connman using dnf by running the following command:

sudo dnf -y install connman

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

sudo yum -y install connman

How To Uninstall connman on Fedora 34

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

sudo dnf remove connman

connman Package Contents on Fedora 34

/etc/dbus-1/system.d/connman.conf
/usr/bin/connmanctl
/usr/lib/.build-id
/usr/lib/.build-id/08
/usr/lib/.build-id/08/25f84e3f633e213b72eeca5f1fe8d1f906ce09
/usr/lib/.build-id/8e
/usr/lib/.build-id/8e/a05cfdcac7b697cf28d14f26ab979628a19ba8
/usr/lib/.build-id/92
/usr/lib/.build-id/92/cc39977cbfecf02f54d0f856356223c70aa1d7
/usr/lib/systemd/system/connman-wait-online.service
/usr/lib/systemd/system/connman.service
/usr/lib/tmpfiles.d/connman_resolvconf.conf
/usr/sbin/connmand
/usr/sbin/connmand-wait-online
/usr/share/doc/connman
/usr/share/doc/connman/README
/usr/share/licenses/connman
/usr/share/licenses/connman/COPYING
/usr/share/man/man1/connmanctl.1.gz
/usr/share/man/man5/connman-service.config.5.gz
/usr/share/man/man5/connman-vpn-provider.config.5.gz
/usr/share/man/man5/connman-vpn.conf.5.gz
/usr/share/man/man5/connman.conf.5.gz
/usr/share/man/man8/connman-vpn.8.gz
/usr/share/man/man8/connman.8.gz
/etc/dbus-1/system.d/connman.conf
/usr/bin/connmanctl
/usr/lib/.build-id
/usr/lib/.build-id/0a
/usr/lib/.build-id/0a/4c7a2d6a95bd74401fa21b71e15a43072ab257
/usr/lib/.build-id/17
/usr/lib/.build-id/17/15bafbc41e99ad11174f0a88e58da259a2beb6
/usr/lib/.build-id/de
/usr/lib/.build-id/de/cd2a1a3739f409df938961b59b71bd8fadee99
/usr/lib/systemd/system/connman-wait-online.service
/usr/lib/systemd/system/connman.service
/usr/lib/tmpfiles.d/connman_resolvconf.conf
/usr/sbin/connmand
/usr/sbin/connmand-wait-online
/usr/share/doc/connman
/usr/share/doc/connman/README
/usr/share/licenses/connman
/usr/share/licenses/connman/COPYING
/usr/share/man/man1/connmanctl.1.gz
/usr/share/man/man5/connman-service.config.5.gz
/usr/share/man/man5/connman-vpn-provider.config.5.gz
/usr/share/man/man5/connman-vpn.conf.5.gz
/usr/share/man/man5/connman.conf.5.gz
/usr/share/man/man8/connman-vpn.8.gz
/usr/share/man/man8/connman.8.gz

References

Summary

In this tutorial we learn how to install connman on Fedora 34 using yum and dnf.