ovn-controller-vtep command not found

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

Introduction

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

ovn-controller-vtep: command not found

or when using sudo you get the following error message

sudo: ovn-controller-vtep: command not found

Solutions to ovn-controller-vtep: command not found

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

In Ubuntu ovn-controller-vtep is provided by ovn-controller-vtep package.

ovn-controller-vtep is:

ovn-controller-vtep is the local controller daemon in OVN, the Open Virtual Network, for VTEP enabled physical switches. It connects up to the OVN Southbound database over the OVSDB protocol, and down to the VTEP database over the OVSDB protocol.

ovn-controller-vtep provides the ovn-controller-vtep binary for controlling vtep gateways.

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

sudo apt-get -y install ovn-controller-vtep

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

You can also use apt command to install ovn-controller-vtep.

sudo apt -y install ovn-controller-vtep

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

sudo aptitude install ovn-controller-vtep

Summary

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