ovn-ic-nbctl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ovn-ic-nbctl: command not found
or when using sudo you get the following error message
sudo: ovn-ic-nbctl: command not found
Solutions to ovn-ic-nbctl: command not found
How To Fix ovn-ic-nbctl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ovn-ic-nbctl is provided by ovn-ic-db package.
ovn-ic-db 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 global OVN IC southbound and northbound OVSDB databases.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ovn-ic-db
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ovn-ic-db.
sudo apt -y install ovn-ic-db
Or if you have aptitude installed you can use the following command.
sudo aptitude install ovn-ic-db
Summary
In this tutorial we learn how to fix ovn-ic-nbctl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.