litmus command not found
In this troubleshooting guide we learn how to fix litmus command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
litmus: command not found
or when using sudo you get the following error message
sudo: litmus: command not found
Solutions to litmus: command not found
How To Fix litmus: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu litmus is provided by litmus package.
litmus is:
A WebDAV server protocol compliance test suite. Tests include:
- OPTIONS for DAV: header
- PUT, GET with byte comparison
- MKCOL
- DELETE (collections, non-collections)
- COPY, MOVE using combinations of:
- overwrite t/f
- destination exists/doesn’t exist
- collection/non-collection
- Property manipulation and querying:
- set, delete, replace properties
- persist dead props across COPY
- namespace handling
- Locking
- attempts to modify locked resource (as lock owner, not owner)
- shared/exclusive locks, lock discovery
To fix this problem, we can install more using the command below.
sudo apt-get -y install litmus
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install litmus.
sudo apt -y install litmus
Or if you have aptitude installed you can use the following command.
sudo aptitude install litmus
Summary
In this tutorial we learn how to fix litmus command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.