How To Install libschedule-at-perl on Kali Linux

In this tutorial we learn how to install libschedule-at-perl on Kali Linux. libschedule-at-perl is OS independent interface to the Unix at command

Introduction

In this tutorial we learn how to install libschedule-at-perl on Kali Linux.

What is libschedule-at-perl

libschedule-at-perl is:

Schedule::At is an Operating System-independent Perl interface to ‘at’, the Unix command that allows you to execute commands at a specified time. It can add new jobs to the queue, read current jobs and remove jobs.

There are three methods to install libschedule-at-perl on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libschedule-at-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 libschedule-at-perl using apt-get by running the following command:

sudo apt-get -y install libschedule-at-perl

Install libschedule-at-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libschedule-at-perl

Install libschedule-at-perl Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libschedule-at-perl using aptitude by running the following command:

sudo aptitude -y install libschedule-at-perl

How To Uninstall libschedule-at-perl on Kali Linux

To uninstall only the libschedule-at-perl package we can use the following command:

sudo apt-get remove libschedule-at-perl

Uninstall libschedule-at-perl And Its Dependencies

To uninstall libschedule-at-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libschedule-at-perl

Remove libschedule-at-perl Configurations and Data

To remove libschedule-at-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libschedule-at-perl

Remove libschedule-at-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libschedule-at-perl

Dependencies

libschedule-at-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libschedule-at-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.