How To Install libwbclient-sssd on Ubuntu 20.04
Introduction
In this tutorial we learn how to install libwbclient-sssd on Ubuntu 20.04.
What is libwbclient-sssd
libwbclient-sssd is:
The SSSD libwbclient implementation.
Package: libwbclient-sssd Architecture: amd64 Version: 2.2.3-3ubuntu0.1 Priority: extra Section: libs 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: 74 Depends: libc6 (>= 2.14), libsss-nss-idmap0 (>= 2.2.3) Filename: pool/main/s/sssd/libwbclient-sssd_2.2.3-3ubuntu0.1_amd64.deb Size: 14836 MD5sum: ed9f22ddf3fa853b2b59a9659131e40f SHA1: 3d9bcfdcd16e77908cd47db2dc8607d661a9f841 SHA256: 87a5e578d4afb712f21c299d8760fddd9d55cea0f63ae881825de0344cebe890 SHA512: 00b09833d52cb2f3ddf54bb9500c0bd8a50f3a607abe386f9ec1ed5ab7119e0a23dae41360ce9b621eba2f14a566c5a59f5337d299fcd649d4474b429d534441 Homepage: https://github.com/SSSD/sssd Description-en: SSSD libwbclient implementation The SSSD libwbclient implementation.
Package: libwbclient-sssd Architecture: amd64 Version: 2.2.3-3 Priority: extra Section: libs 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: 74 Depends: libc6 (>= 2.14), libsss-nss-idmap0 (>= 2.2.3) Filename: pool/main/s/sssd/libwbclient-sssd_2.2.3-3_amd64.deb Size: 14840 MD5sum: f22612662b0181f3634fb8f64a111e8c SHA1: d0ff8cf2896ad385c3627e9963222aa316436afb SHA256: 0fb5161ba07d9e1540551abb83933528b024c9c1e00a251c9bea9f4baceed88e Homepage: https://github.com/SSSD/sssd Description-en: SSSD libwbclient implementation The SSSD libwbclient implementation.
There are three methods to install libwbclient-sssd 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 libwbclient-sssd Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install libwbclient-sssd using apt-get by running the following command:
sudo apt-get -y install libwbclient-sssd
Install libwbclient-sssd Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install libwbclient-sssd using apt by running the following command:
sudo apt -y install libwbclient-sssd
Install libwbclient-sssd 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 libwbclient-sssd using aptitude by running the following command:
sudo aptitude -y install libwbclient-sssd
How To Uninstall libwbclient-sssd on Ubuntu 20.04
To uninstall only the libwbclient-sssd package we can use the following command:
sudo apt-get remove libwbclient-sssd
Uninstall libwbclient-sssd And Its Dependencies
To uninstall libwbclient-sssd and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove libwbclient-sssd
Remove libwbclient-sssd Configurations and Data
To remove libwbclient-sssd configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge libwbclient-sssd
Remove libwbclient-sssd configuration, data, and all of its dependencies
We can use the following command to remove libwbclient-sssd configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libwbclient-sssd
References
Summary
In this tutorial we learn how to install libwbclient-sssd package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.