oor command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
oor: command not found
or when using sudo you get the following error message
sudo: oor: command not found
Solutions to oor: command not found
How To Fix oor: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu oor is provided by openoverlayrouter package.
openoverlayrouter is:
The OpenOverlayRouter (OOR) project aims to deliver a flexible and modular open-source implementation to deploy programmable overlay networks. It leverages on encapsulating overlay-specific packets into underlay-compatible packets at the edges of the instantiated overlay and route them over the physical underlying infrastructure. In order to do so, it maps overlay identifiers to underlay locators and keeps those mappings updated over time. In the current version, OOR uses the LISP protocol for the control-plane (e.g. mapping retrieval and updating, etc), NETCONF/YANG for the management-plane (e.g. overlay identifiers provisioning, etc) and can use both LISP and VXLAN-GPE headers for encapsulation.
To fix this problem, we can install more using the command below.
sudo apt-get -y install openoverlayrouter
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install openoverlayrouter.
sudo apt -y install openoverlayrouter
Or if you have aptitude installed you can use the following command.
sudo aptitude install openoverlayrouter
Summary
In this tutorial we learn how to fix oor command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.