ovn-docker-overlay-driver command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ovn-docker-overlay-driver: command not found
or when using sudo you get the following error message
sudo: ovn-docker-overlay-driver: command not found
Solutions to ovn-docker-overlay-driver: command not found
How To Fix ovn-docker-overlay-driver: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ovn-docker-overlay-driver is provided by ovn-docker package.
ovn-docker is:
OVN, the Open Virtual Network, is a system to support virtual network abstraction. OVN complements the existing capabilities of OVS to add native support for virtual network abstractions, such as virtual L2 and L3 overlays and security groups.
ovn-docker provides the docker drivers for OVN.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ovn-docker
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ovn-docker.
sudo apt -y install ovn-docker
Or if you have aptitude installed you can use the following command.
sudo aptitude install ovn-docker
Summary
In this tutorial we learn how to fix ovn-docker-overlay-driver command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.