How To Install libauthen-sasl-saslprep-perl on Ubuntu 18.04

In this tutorial we learn how to install libauthen-sasl-saslprep-perl on Ubuntu 18.04. libauthen-sasl-saslprep-perl is Stringprep Profile for User Names and Passwords (RFC 4013)

Introduction

In this tutorial we learn how to install libauthen-sasl-saslprep-perl on Ubuntu 18.04.

What is libauthen-sasl-saslprep-perl

libauthen-sasl-saslprep-perl is:

Authen::SASL::SASLprep implements the SASLprep specification, which describes how to prepare Unicode strings representing user names and passwords for comparison. SASLprep is a profile of the stringprep algorithm.

There are three methods to install libauthen-sasl-saslprep-perl on Ubuntu 18.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 libauthen-sasl-saslprep-perl Using apt-get

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

sudo apt-get update

After updating apt database, We can install libauthen-sasl-saslprep-perl using apt-get by running the following command:

sudo apt-get -y install libauthen-sasl-saslprep-perl

Install libauthen-sasl-saslprep-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libauthen-sasl-saslprep-perl using apt by running the following command:

sudo apt -y install libauthen-sasl-saslprep-perl

Install libauthen-sasl-saslprep-perl 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 libauthen-sasl-saslprep-perl using aptitude by running the following command:

sudo aptitude -y install libauthen-sasl-saslprep-perl

How To Uninstall libauthen-sasl-saslprep-perl on Ubuntu 18.04

To uninstall only the libauthen-sasl-saslprep-perl package we can use the following command:

sudo apt-get remove libauthen-sasl-saslprep-perl

Uninstall libauthen-sasl-saslprep-perl And Its Dependencies

To uninstall libauthen-sasl-saslprep-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libauthen-sasl-saslprep-perl

Remove libauthen-sasl-saslprep-perl Configurations and Data

To remove libauthen-sasl-saslprep-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libauthen-sasl-saslprep-perl

Remove libauthen-sasl-saslprep-perl configuration, data, and all of its dependencies

We can use the following command to remove libauthen-sasl-saslprep-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libauthen-sasl-saslprep-perl

References

Summary

In this tutorial we learn how to install libauthen-sasl-saslprep-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.