How To Install netatalk on AlmaLinux 8

In this tutorial we learn how to install netatalk in AlmaLinux 8. netatalk is Open Source Apple Filing Protocol(AFP) File Server

Introduction

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

What is netatalk

Netatalk is a freely-available Open Source AFP file server. A *NIX/*BSD system running Netatalk is capable of serving many Macintosh clients simultaneously as an AppleShare file server (AFP).

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

Install netatalk 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 netatalk using dnf by running the following command:

sudo dnf -y install netatalk

Install netatalk 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 netatalk using yum by running the following command:

sudo yum -y install netatalk

How To Uninstall netatalk on AlmaLinux 8

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

sudo dnf remove netatalk

References

Summary

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