How To Install libsys-utmp-perl on Ubuntu 18.04

In this tutorial we learn how to install libsys-utmp-perl on Ubuntu 18.04. libsys-utmp-perl is perl module to query UTMP files

Introduction

In this tutorial we learn how to install libsys-utmp-perl on Ubuntu 18.04.

What is libsys-utmp-perl

libsys-utmp-perl is:

Sys::Utmp provides a vaguely object oriented interface to the Unix user accounting file /var/run/utmp, and other files of similar format. It can only be used to query the contents of the file, and cannot modify it.

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

sudo apt-get -y install libsys-utmp-perl

Install libsys-utmp-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libsys-utmp-perl

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

sudo aptitude -y install libsys-utmp-perl

How To Uninstall libsys-utmp-perl on Ubuntu 18.04

To uninstall only the libsys-utmp-perl package we can use the following command:

sudo apt-get remove libsys-utmp-perl

Uninstall libsys-utmp-perl And Its Dependencies

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

sudo apt-get -y autoremove libsys-utmp-perl

Remove libsys-utmp-perl Configurations and Data

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

sudo apt-get -y purge libsys-utmp-perl

Remove libsys-utmp-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libsys-utmp-perl

References

Summary

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