ovn-sbctl command not found

In this troubleshooting guide we learn how to fix ovn-sbctl command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ovn-sbctl: command not found

or when using sudo you get the following error message

sudo: ovn-sbctl: command not found

Solutions to ovn-sbctl: command not found

How To Fix ovn-sbctl: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ovn-sbctl is provided by ovn-common package.

ovn-common 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-common provides components required by other OVN packages.

To fix this problem, we can install more using the command below.

sudo apt-get -y install ovn-common

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install ovn-common.

sudo apt -y install ovn-common

Or if you have aptitude installed you can use the following command.

sudo aptitude install ovn-common

Summary

In this tutorial we learn how to fix ovn-sbctl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.