How To Install lasso on Rocky Linux 8

In this tutorial we learn how to install lasso on Rocky Linux 8. lasso is Liberty Alliance Single Sign On

Introduction

In this tutorial we learn how to install lasso on Rocky Linux 8.

What is lasso

Lasso is a library that implements the Liberty Alliance Single Sign On standards, including the SAML and SAML2 specifications. It allows to handle the whole life-cycle of SAML based Federations, and provides bindings for multiple languages.

We can use yum or dnf to install lasso on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install lasso.

Install lasso on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install lasso using dnf by running the following command:

sudo dnf -y install lasso

Install lasso on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install lasso using yum by running the following command:

sudo yum -y install lasso

How To Uninstall lasso on Rocky Linux 8

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

sudo dnf remove lasso

lasso Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/61
/usr/lib/.build-id/61/796421d40d6477e95cda0e9be43093ee5dfa04
/usr/lib/liblasso.so.3
/usr/lib/liblasso.so.3.13.0
/usr/share/doc/lasso
/usr/share/doc/lasso/AUTHORS
/usr/share/doc/lasso/COPYING
/usr/share/doc/lasso/NEWS
/usr/share/doc/lasso/README
/usr/lib/.build-id
/usr/lib/.build-id/d9
/usr/lib/.build-id/d9/49950b036ffa32aa016b03ea060fa86c0c9b83
/usr/lib64/liblasso.so.3
/usr/lib64/liblasso.so.3.13.0
/usr/share/doc/lasso
/usr/share/doc/lasso/AUTHORS
/usr/share/doc/lasso/COPYING
/usr/share/doc/lasso/NEWS
/usr/share/doc/lasso/README

References

Summary

In this tutorial we learn how to install lasso on Rocky Linux 8 using yum and dnf.