How To Install litmus on Fedora 34
Introduction
In this tutorial we learn how to install litmus
on Fedora 34.
What is litmus
litmus is a WebDAV server test suite, which aims to test whether a server is compliant with the WebDAV protocol as specified in RFC2518.
We can use yum
or dnf
to install litmus
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install litmus.
Install litmus 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 litmus
using dnf
by running the following command:
sudo dnf -y install litmus
Install litmus 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 litmus
using yum
by running the following command:
sudo yum -y install litmus
How To Uninstall litmus on Fedora 34
To uninstall only the litmus
package we can use the following command:
sudo dnf remove litmus
litmus Package Contents on Fedora 34
/usr/bin/litmus
/usr/lib/.build-id
/usr/lib/.build-id/76
/usr/lib/.build-id/76/8d0e54ee347149992c71c94c3dd9835e1d55a5
/usr/lib/.build-id/ac
/usr/lib/.build-id/ac/ec83b90cfe9def5bbd9715f767139b3bfe01ef
/usr/lib/.build-id/cc
/usr/lib/.build-id/cc/8416d25a39177c8d4b33081a471913c9ad556b
/usr/lib/.build-id/d5
/usr/lib/.build-id/d5/64a2d5b65b3dce486076f5457aef69bd1d5cb4
/usr/lib/.build-id/f8
/usr/lib/.build-id/f8/420d67dc08f387555ae5fe6402a4fe279a22f8
/usr/libexec/litmus
/usr/libexec/litmus/basic
/usr/libexec/litmus/copymove
/usr/libexec/litmus/http
/usr/libexec/litmus/locks
/usr/libexec/litmus/props
/usr/share/doc/litmus
/usr/share/doc/litmus/COPYING
/usr/share/doc/litmus/FAQ
/usr/share/doc/litmus/README
/usr/share/doc/litmus/THANKS
/usr/share/doc/litmus/TODO
/usr/share/litmus/htdocs
/usr/share/litmus/htdocs/foo
References
Summary
In this tutorial we learn how to install litmus
on Fedora 34 using yum and dnf.