xandikos command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xandikos: command not found
or when using sudo you get the following error message
sudo: xandikos: command not found
Solutions to xandikos: command not found
How To Fix xandikos: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xandikos is provided by xandikos package.
xandikos is:
Xandikos is a standards-compliant CalDAV/CardDAV server that backs onto a Git repository.
It supports the following standards:
- RFC4918/RFC2518 (Core WebDAV) - implemented, except for COPY/MOVE/LOCK
- RFC4791 (CalDAV) - fully implemented
- RFC6352 (CardDAV) - fully implemented
- RFC5397 (Current Principal) - fully implemented
- RFC3253 (Versioning Extensions) - partially implemented
- RFC3744 (Access Control) - partially implemented
- RFC5995 (POST to create members) - fully implemented
Xandikos (Ξανδικός) takes its name from the name of the February month in the ancient Macedonian calendar, used in Macedon in the first millennium BC.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xandikos
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xandikos.
sudo apt -y install xandikos
Or if you have aptitude installed you can use the following command.
sudo aptitude install xandikos
Summary
In this tutorial we learn how to fix xandikos command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.