How To Install netatalk-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install netatalk-devel
on Rocky Linux 8.
What is netatalk-devel
This package contains libraries and header files for developing applications that use netatalk.
We can use yum
or dnf
to install netatalk-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install netatalk-devel.
Install netatalk-devel on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install netatalk-devel
using dnf
by running the following command:
sudo dnf -y install netatalk-devel
Install netatalk-devel on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install netatalk-devel
using yum
by running the following command:
sudo yum -y install netatalk-devel
How To Uninstall netatalk-devel on Rocky Linux 8
To uninstall only the netatalk-devel
package we can use the following command:
sudo dnf remove netatalk-devel
netatalk-devel Package Contents on Rocky Linux 8
/usr/bin/netatalk-config
/usr/include/atalk
/usr/include/atalk/acl.h
/usr/include/atalk/adouble.h
/usr/include/atalk/afp.h
/usr/include/atalk/bstrlib.h
/usr/include/atalk/cnid.h
/usr/include/atalk/compat.h
/usr/include/atalk/dictionary.h
/usr/include/atalk/ea.h
/usr/include/atalk/globals.h
/usr/include/atalk/hash.h
/usr/include/atalk/iniparser.h
/usr/include/atalk/list.h
/usr/include/atalk/logger.h
/usr/include/atalk/netatalk_conf.h
/usr/include/atalk/paths.h
/usr/include/atalk/standards.h
/usr/include/atalk/uam.h
/usr/include/atalk/unicode.h
/usr/include/atalk/unix.h
/usr/include/atalk/util.h
/usr/include/atalk/vfs.h
/usr/include/atalk/volume.h
/usr/lib64/libatalk.so
/usr/share/aclocal/netatalk.m4
/usr/share/man/man1/netatalk-config.1.gz
References
Summary
In this tutorial we learn how to install netatalk-devel
on Rocky Linux 8 using yum and dnf.