sysrepo-plugind command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sysrepo-plugind: command not found
or when using sudo you get the following error message
sudo: sysrepo-plugind: command not found
Solutions to sysrepo-plugind: command not found
How To Fix sysrepo-plugind: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sysrepo-plugind is provided by sysrepo-plugind package.
sysrepo-plugind is:
Applications can use sysrepo to store their configuration modeled by provided YANG model instead of using e.g. flat configuration files. Sysrepo will ensure data consistency of the data stored in the datastore and enforce data constraints defined by YANG model.
Sysrepo can be easily integrated with management agents such as NETCONF or RESTCONF servers, using the same client library API that applications use to access their configuration.
This package contains the daemon for grouping sysrepo plugins.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sysrepo-plugind
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sysrepo-plugind.
sudo apt -y install sysrepo-plugind
Or if you have aptitude installed you can use the following command.
sudo aptitude install sysrepo-plugind
Summary
In this tutorial we learn how to fix sysrepo-plugind command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.