How To Install sssd-ipa on Ubuntu 20.04

In this tutorial we learn how to install sssd-ipa on Ubuntu 20.04. sssd-ipa is System Security Services Daemon – IPA back end System Security Services Daemon – IPA back end System Security Services Daemon – IPA back end

Introduction

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

What is sssd-ipa

sssd-ipa is:

Provides the IPA back end that the SSSD can utilize to fetch identity data from and authenticate against an IPA server.

Package: sssd-ipa 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: 708 Depends: libipa-hbac0 (= 2.2.3-3ubuntu0.1), libsss-idmap0 (= 2.2.3-3ubuntu0.1), sssd-ad-common (= 2.2.3-3ubuntu0.1), sssd-common (= 2.2.3-3ubuntu0.1), sssd-krb5-common (= 2.2.3-3ubuntu0.1), libc6 (>= 2.28), libdhash1 (>= 0.4.0), libldap-2.4-2 (>= 2.4.7), libldb2 (>= 0.9.21), libpopt0 (>= 1.14), libselinux1 (>= 1.32), libsemanage1 (>= 2.0.3), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.9), samba-libs (>= 2:4.11.6+dfsg) Breaks: sssd (« 1.10.0~beta2-1) Replaces: sssd (« 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ipa_2.2.3-3ubuntu0.1_amd64.deb Size: 210504 MD5sum: 60ec5732c59390a8dfc75b24d49973b9 SHA1: 577316bd15f2a2575bb8949c5a53a86198cfb654 SHA256: 8021a38b355efbb18c6c03aea88652c6daa962ce4dd2b204fe3d0c18bf1813e0 SHA512: 07844d44d93df78979f179f8517ac04cc5aef2660136e88fe112264c410da22184cbf1eec4738a8b7de19fe648e7f72be4c694d59d34535adb532f03e08242cc Homepage: https://github.com/SSSD/sssd Description-en: System Security Services Daemon – IPA back end Provides the IPA back end that the SSSD can utilize to fetch identity data from and authenticate against an IPA server.

Package: sssd-ipa 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: 708 Depends: libipa-hbac0 (= 2.2.3-3), libsss-idmap0 (= 2.2.3-3), sssd-ad-common (= 2.2.3-3), sssd-common (= 2.2.3-3), sssd-krb5-common (= 2.2.3-3), libc6 (>= 2.28), libdhash1 (>= 0.4.0), libldap-2.4-2 (>= 2.4.7), libldb2 (>= 0.9.21), libpopt0 (>= 1.14), libselinux1 (>= 1.32), libsemanage1 (>= 2.0.3), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.9), samba-libs (>= 2:4.11.6+dfsg) Breaks: sssd (« 1.10.0~beta2-1) Replaces: sssd (« 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ipa_2.2.3-3_amd64.deb Size: 210744 MD5sum: 64af36678ac2b36d52959e3cdd1f2315 SHA1: df695c43eba5d773e61f2931b24cc1c535904507 SHA256: 8886d7e59c95d3a6c906212c3b7eb83093d92f8954f7f09ee34996c8925e989e Homepage: https://github.com/SSSD/sssd Description-en: System Security Services Daemon – IPA back end Provides the IPA back end that the SSSD can utilize to fetch identity data from and authenticate against an IPA server.

There are three methods to install sssd-ipa 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-ipa 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-ipa using apt-get by running the following command:

sudo apt-get -y install sssd-ipa

Install sssd-ipa Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install sssd-ipa

Install sssd-ipa 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-ipa using aptitude by running the following command:

sudo aptitude -y install sssd-ipa

How To Uninstall sssd-ipa on Ubuntu 20.04

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

sudo apt-get remove sssd-ipa

Uninstall sssd-ipa And Its Dependencies

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

sudo apt-get -y autoremove sssd-ipa

Remove sssd-ipa Configurations and Data

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

sudo apt-get -y purge sssd-ipa

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

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

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

References

Summary

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