How To Install davix on Fedora 34

davix is Toolkit for Http-based file management

Introduction

In this tutorial we learn how to install davix on Fedora 34.

What is davix

Davix is a toolkit designed for file operations with Http based protocols (WebDav, Amazon S3, …). Davix provides an API and a set of command line tools.

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

Install davix on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install davix

Install davix on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo yum -y install davix

How To Uninstall davix on Fedora 34

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

sudo dnf remove davix

davix Package Contents on Fedora 34

/usr/bin/davix-cp
/usr/bin/davix-get
/usr/bin/davix-http
/usr/bin/davix-ls
/usr/bin/davix-mkdir
/usr/bin/davix-mv
/usr/bin/davix-put
/usr/bin/davix-rm
/usr/bin/davix-tester
/usr/bin/davix-unit-tests
/usr/lib/.build-id
/usr/lib/.build-id/1a
/usr/lib/.build-id/1a/599cebcb7a63353bb32478c84a0f3b591d22de
/usr/lib/.build-id/29
/usr/lib/.build-id/29/ed099360c671c6f3529c5195db7df92535823b
/usr/lib/.build-id/2a
/usr/lib/.build-id/2a/53c459d05437ac149f66188d3d0073aec10df1
/usr/lib/.build-id/3d
/usr/lib/.build-id/3d/febb2a1bbb6dad65189103838e91b63202f768
/usr/lib/.build-id/57
/usr/lib/.build-id/57/ef5d56ad6458ce60b1ea56c67a70a6d49209f9
/usr/lib/.build-id/58
/usr/lib/.build-id/58/e4e5e9e6bb79bee53dbffdd98127ec268fafdd
/usr/lib/.build-id/76
/usr/lib/.build-id/76/86cfb9d9ebbf7c5f7511787c3d6883f210d4d8
/usr/lib/.build-id/90
/usr/lib/.build-id/90/8989cca8508dbfafddc6a8e9dd1ff62cc34b4c
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/0962da8169c85ad19882ebba9fe1038f42528f
/usr/lib/.build-id/ec
/usr/lib/.build-id/ec/6911de1fcde17d1c3c7be996eff151ea8500e2
/usr/share/man/man1/davix-get.1.gz
/usr/share/man/man1/davix-http.1.gz
/usr/share/man/man1/davix-ls.1.gz
/usr/share/man/man1/davix-mkdir.1.gz
/usr/share/man/man1/davix-mv.1.gz
/usr/share/man/man1/davix-put.1.gz
/usr/share/man/man1/davix-rm.1.gz

References

Summary

In this tutorial we learn how to install davix on Fedora 34 using yum and dnf.