nsrancid command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nsrancid: command not found
or when using sudo you get the following error message
sudo: nsrancid: command not found
Solutions to nsrancid: command not found
How To Fix nsrancid: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nsrancid is provided by rancid package.
rancid is:
This is a popular ISP toolkit, based on expect and shell scripts, for managing router configurations.
Rancid monitors a router’s (or device’s) configuration, including software and hardware (cards, serial numbers, etc), using CVS, Subversion, or Git.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rancid
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rancid.
sudo apt -y install rancid
Or if you have aptitude installed you can use the following command.
sudo aptitude install rancid
Summary
In this tutorial we learn how to fix nsrancid command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.