update_nldb command not found

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

Introduction

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

update_nldb: command not found

or when using sudo you get the following error message

sudo: update_nldb: command not found

Solutions to update_nldb: command not found

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

In Ubuntu update_nldb is provided by geneweb package.

geneweb is:

Geneweb allows keeping track of ancestral data. It is a powerful system for maintaining a set of data about your family history. It supports much of the GEDCOM tag system for data storage, and can be used either as your primary system for archiving genealogical data, or as a web service (through a CGI interface) for publishing your data for others to use.

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

sudo apt-get -y install geneweb

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

You can also use apt command to install geneweb.

sudo apt -y install geneweb

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

sudo aptitude install geneweb

Summary

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