How To Install sssd-dbus on Ubuntu 20.04

In this tutorial we learn how to install sssd-dbus on Ubuntu 20.04. sssd-dbus is System Security Services Daemon – D-Bus responder System Security Services Daemon – D-Bus responder System Security Services Daemon – D-Bus responder

Introduction

In this tutorial we learn how to install sssd-dbus on Ubuntu 20.04.

What is sssd-dbus

sssd-dbus is:

Provides the D-Bus responder called InfoPipe, that allows the information from the SSSD to be transmitted over the system bus.

Package: sssd-dbus Architecture: amd64 Version: 2.2.3-3ubuntu0.1 Priority: extra Section: utils Source: sssd Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian SSSD Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 349 Depends: sssd-common (= 2.2.3-3ubuntu0.1), libc6 (>= 2.28), libdbus-1-3 (>= 1.9.14), libdhash1 (>= 0.4.0), libldb2 (>= 0.9.21), libpopt0 (>= 1.14), libselinux1 (>= 1.32), libsystemd0, libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9) Filename: pool/main/s/sssd/sssd-dbus_2.2.3-3ubuntu0.1_amd64.deb Size: 94184 MD5sum: 3bbae1b944425cfcdd5c4f5e01510c47 SHA1: f15fda2389b1a38b605883b2d044dacfa2f8f718 SHA256: efada2f74ae69701f63707acf682dbcb44805ec9af694d7c0a817541900dfbc9 SHA512: 6647fdcb47365b40e3974a9725c08fddd6e122878076f7cb72f47f493c23d0f018f6505a7a34e7b0c95701d77fd903e7b0487706ea8f35ad49ade64d57aa7060 Homepage: https://github.com/SSSD/sssd Description-en: System Security Services Daemon – D-Bus responder Provides the D-Bus responder called InfoPipe, that allows the information from the SSSD to be transmitted over the system bus.

Package: sssd-dbus Architecture: amd64 Version: 2.2.3-3 Priority: extra Section: utils Source: sssd Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian SSSD Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 349 Depends: sssd-common (= 2.2.3-3), libc6 (>= 2.28), libdbus-1-3 (>= 1.9.14), libdhash1 (>= 0.4.0), libldb2 (>= 0.9.21), libpopt0 (>= 1.14), libselinux1 (>= 1.32), libsystemd0, libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9) Filename: pool/main/s/sssd/sssd-dbus_2.2.3-3_amd64.deb Size: 93516 MD5sum: c5b4213e91c431974322cf5232cf75cf SHA1: cc137976b1e2c5f026310ccabb8f00144377725e SHA256: 368188dbc05aa2cf4d58d8f9c8d9bd294d24ea2e033c574dca455ad01a7e3a6d Homepage: https://github.com/SSSD/sssd Description-en: System Security Services Daemon – D-Bus responder Provides the D-Bus responder called InfoPipe, that allows the information from the SSSD to be transmitted over the system bus.

There are three methods to install sssd-dbus on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install sssd-dbus Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install sssd-dbus using apt-get by running the following command:

sudo apt-get -y install sssd-dbus

Install sssd-dbus Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install sssd-dbus using apt by running the following command:

sudo apt -y install sssd-dbus

Install sssd-dbus Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install sssd-dbus using aptitude by running the following command:

sudo aptitude -y install sssd-dbus

How To Uninstall sssd-dbus on Ubuntu 20.04

To uninstall only the sssd-dbus package we can use the following command:

sudo apt-get remove sssd-dbus

Uninstall sssd-dbus And Its Dependencies

To uninstall sssd-dbus and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove sssd-dbus

Remove sssd-dbus Configurations and Data

To remove sssd-dbus configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge sssd-dbus

Remove sssd-dbus configuration, data, and all of its dependencies

We can use the following command to remove sssd-dbus configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge sssd-dbus

References

Summary

In this tutorial we learn how to install sssd-dbus package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.