How To Install amanda on AlmaLinux 8

In this tutorial we learn how to install amanda in AlmaLinux 8. amanda is A network-capable tape backup solution

Introduction

In this tutorial we learn how to install amanda on AlmaLinux 8.

What is amanda

AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that allows the administrator of a LAN to set up a single master backup server to back up multiple hosts to one or more tape drives or disk files. AMANDA uses native dump and/or GNU tar facilities and can back up a large number of workstations running multiple versions of Unix. Newer versions of AMANDA (including this version) can use SAMBA to back up Microsoft(TM) Windows95/NT hosts. The amanda package contains the core AMANDA programs and will need to be installed on both AMANDA clients and AMANDA servers. Note that you will have to install the amanda-client and/or amanda-server packages as well.

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

Install amanda on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install amanda

Install amanda on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install amanda

How To Uninstall amanda on AlmaLinux 8

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

sudo dnf remove amanda

References

Summary

In this tutorial we learn how to install amanda on AlmaLinux 8 using yum and dnf.