nsscache command not found

In this troubleshooting guide we learn how to fix nsscache command not found error message

Introduction

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

nsscache: command not found

or when using sudo you get the following error message

sudo: nsscache: command not found

Solutions to nsscache: command not found

How To Fix nsscache: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu nsscache is provided by nsscache package.

nsscache is:

Synchronises local NSS caches, such as those served by the libnss-cache module, against remote directory services, such as LDAP, or prebuild cache files from an HTTP server. This can be used alongside the libnss-cache package to keep user account information, groups, netgroups, and automounts up to date.

Use of nsscache and libnss-cache eliminates the need for using a cache daemon such as nscd with networked NSS modules such as libnss-ldap.

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

sudo apt-get -y install nsscache

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

You can also use apt command to install nsscache.

sudo apt -y install nsscache

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

sudo aptitude install nsscache

Summary

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