netopeer2-server command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
netopeer2-server: command not found
or when using sudo you get the following error message
sudo: netopeer2-server: command not found
Solutions to netopeer2-server: command not found
How To Fix netopeer2-server: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu netopeer2-server is provided by netopeer2 package.
netopeer2 is:
Netopeer2 is a server for implementing network configuration management based on the NETCONF Protocol. This is the second generation, originally available as the Netopeer project. Netopeer2 is based on the new generation of the NETCONF and YANG libraries - libyang and libnetconf2. The Netopeer2 server uses sysrepo as a NETCONF datastore implementation.
To fix this problem, we can install more using the command below.
sudo apt-get -y install netopeer2
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install netopeer2.
sudo apt -y install netopeer2
Or if you have aptitude installed you can use the following command.
sudo aptitude install netopeer2
Summary
In this tutorial we learn how to fix netopeer2-server command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.