How To Install liblasso3 on Ubuntu 20.04
Introduction
In this tutorial we learn how to install liblasso3 on Ubuntu 20.04.
What is liblasso3
liblasso3 is:
Lasso is an implementation of Liberty Alliance and related protocols, for network identity federations, single sign-on and other web services protocols. The main specifications implemented by the library are ID-FF, ID-WSF and SAML.
This package contains liblasso library used by applications to gain Library Alliance support.
Package: liblasso3 Architecture: amd64 Version: 2.6.0-7ubuntu1 Priority: optional Section: libs Source: lasso Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Frederic Peters [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 570 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.41.1), libssl1.1 (>= 1.1.0), libxml2 (>= 2.7.4), libxmlsec1 (>= 1.2.28), libxmlsec1-openssl (>= 1.2.28), libxslt1.1 (>= 1.1.25), zlib1g (>= 1:1.1.4) Filename: pool/main/l/lasso/liblasso3_2.6.0-7ubuntu1_amd64.deb Size: 165660 MD5sum: fb1292b6a941bcacd74b5db11866b0a1 SHA1: 15c9f7aaec15f3ba0798c5bd8cee6ad8535d6776 SHA256: 54fa6aff5239c8dfd71c94cafa179c2ea45fd2e1d57cb122f3da4c0dd30e9492 Homepage: http://lasso.entrouvert.org Description-en: Library for Liberty Alliance and SAML protocols - runtime library Lasso is an implementation of Liberty Alliance and related protocols, for network identity federations, single sign-on and other web services protocols. The main specifications implemented by the library are ID-FF, ID-WSF and SAML.
This package contains liblasso library used by applications to gain Library Alliance support.
There are three methods to install liblasso3 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 liblasso3 Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install liblasso3 using apt-get by running the following command:
sudo apt-get -y install liblasso3
Install liblasso3 Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install liblasso3 using apt by running the following command:
sudo apt -y install liblasso3
Install liblasso3 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 liblasso3 using aptitude by running the following command:
sudo aptitude -y install liblasso3
How To Uninstall liblasso3 on Ubuntu 20.04
To uninstall only the liblasso3 package we can use the following command:
sudo apt-get remove liblasso3
Uninstall liblasso3 And Its Dependencies
To uninstall liblasso3 and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove liblasso3
Remove liblasso3 Configurations and Data
To remove liblasso3 configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge liblasso3
Remove liblasso3 configuration, data, and all of its dependencies
We can use the following command to remove liblasso3 configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge liblasso3
References
Summary
In this tutorial we learn how to install liblasso3 package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.