How To Install davix-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install davix-devel
on Rocky Linux 8.
What is davix-devel
Development files for davix. Davix is a toolkit designed for file operations with Http based protocols (WebDav, Amazon S3, …).
We can use yum
or dnf
to install davix-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install davix-devel.
Install davix-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 davix-devel
using dnf
by running the following command:
sudo dnf -y install davix-devel
Install davix-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 davix-devel
using yum
by running the following command:
sudo yum -y install davix-devel
How To Uninstall davix-devel on Rocky Linux 8
To uninstall only the davix-devel
package we can use the following command:
sudo dnf remove davix-devel
davix-devel Package Contents on Rocky Linux 8
/usr/include/davix
/usr/include/davix/auth
/usr/include/davix/auth/davixauth.hpp
/usr/include/davix/auth/davixx509cred.hpp
/usr/include/davix/compat
/usr/include/davix/compat/davix_ignored.hpp
/usr/include/davix/compat/deprecated.hpp
/usr/include/davix/copy
/usr/include/davix/copy/davixcopy.hpp
/usr/include/davix/davix.hpp
/usr/include/davix/davix_file_types.hpp
/usr/include/davix/davixcontext.hpp
/usr/include/davix/features.hpp
/usr/include/davix/file
/usr/include/davix/file/davfile.hpp
/usr/include/davix/file/davix_file_info.hpp
/usr/include/davix/file/davposix.hpp
/usr/include/davix/hooks
/usr/include/davix/hooks/davix_hooks.hpp
/usr/include/davix/hooks/davix_hooks_fwd.hpp
/usr/include/davix/hooks/davix_hooks_impl.hpp
/usr/include/davix/params
/usr/include/davix/params/davix_request_params_types.hpp
/usr/include/davix/params/davixrequestparams.hpp
/usr/include/davix/request
/usr/include/davix/request/httprequest.hpp
/usr/include/davix/status
/usr/include/davix/status/davixstatusrequest.hpp
/usr/include/davix/utils
/usr/include/davix/utils/davix_azure_utils.hpp
/usr/include/davix/utils/davix_config.hpp
/usr/include/davix/utils/davix_gcloud_utils.hpp
/usr/include/davix/utils/davix_logger.hpp
/usr/include/davix/utils/davix_misc_utils.hpp
/usr/include/davix/utils/davix_nocopy.hpp
/usr/include/davix/utils/davix_s3_utils.hpp
/usr/include/davix/utils/davix_types.hpp
/usr/include/davix/utils/davix_uri.hpp
/usr/lib64/libdavix.so
/usr/lib64/libdavix_copy.so
/usr/lib64/pkgconfig/davix.pc
/usr/lib64/pkgconfig/davix_copy.pc
References
Summary
In this tutorial we learn how to install davix-devel
on Rocky Linux 8 using yum and dnf.