How To Install libcrypt-ciphersaber-perl on Ubuntu 18.04

In this tutorial we learn how to install libcrypt-ciphersaber-perl on Ubuntu 18.04. libcrypt-ciphersaber-perl is Perl module implementing CipherSaber encryption

Introduction

In this tutorial we learn how to install libcrypt-ciphersaber-perl on Ubuntu 18.04.

What is libcrypt-ciphersaber-perl

libcrypt-ciphersaber-perl is:

The Crypt::CipherSaber module implements CipherSaber encryption, described at http://ciphersaber.gurus.com. It is simple, fairly speedy, and relatively secure algorithm based on RC4.

Encryption and decryption are done based on a secret key, which must be shared with all intended recipients of a message.

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

sudo apt-get -y install libcrypt-ciphersaber-perl

Install libcrypt-ciphersaber-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libcrypt-ciphersaber-perl using apt by running the following command:

sudo apt -y install libcrypt-ciphersaber-perl

Install libcrypt-ciphersaber-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 libcrypt-ciphersaber-perl using aptitude by running the following command:

sudo aptitude -y install libcrypt-ciphersaber-perl

How To Uninstall libcrypt-ciphersaber-perl on Ubuntu 18.04

To uninstall only the libcrypt-ciphersaber-perl package we can use the following command:

sudo apt-get remove libcrypt-ciphersaber-perl

Uninstall libcrypt-ciphersaber-perl And Its Dependencies

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

sudo apt-get -y autoremove libcrypt-ciphersaber-perl

Remove libcrypt-ciphersaber-perl Configurations and Data

To remove libcrypt-ciphersaber-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libcrypt-ciphersaber-perl

Remove libcrypt-ciphersaber-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libcrypt-ciphersaber-perl

References

Summary

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