ovn-ic command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ovn-ic: command not found
or when using sudo you get the following error message
sudo: ovn-ic: command not found
Solutions to ovn-ic: command not found
How To Fix ovn-ic: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ovn-ic is provided by ovn-ic package.
ovn-ic is:
OVN IC, the Open Virtual Network interconnection controller, is a centralized daemon which communicates with global interconnection databases to configure and exchange data with local OVN databases for interconnection with other OVN deployments.
This package provides the ovn-ic daemon which should be run alongside ovn-central services in each OVN deployment zone.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ovn-ic
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ovn-ic.
sudo apt -y install ovn-ic
Or if you have aptitude installed you can use the following command.
sudo aptitude install ovn-ic
Summary
In this tutorial we learn how to fix ovn-ic command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.