dav command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dav: command not found
or when using sudo you get the following error message
sudo: dav: command not found
Solutions to dav: command not found
How To Fix dav: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dav is provided by dav-text package.
dav-text is:
Dav is meant to provide a stable text editor that is efficient in both memory and processor usage. It is simple to use, making it ideal for novice users. It is licensed under the GPL and is still in development.
Features include: * Memory and cpu efficiency * Small filesize and footprint * Freely licensed under the GPL * Useful feature set * Intuitive and easy to use
To fix this problem, we can install more using the command below.
sudo apt-get -y install dav-text
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dav-text.
sudo apt -y install dav-text
Or if you have aptitude installed you can use the following command.
sudo aptitude install dav-text
Summary
In this tutorial we learn how to fix dav command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.