doodled command not found

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

Introduction

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

doodled: command not found

or when using sudo you get the following error message

sudo: doodled: command not found

Solutions to doodled: command not found

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

In Ubuntu doodled is provided by doodled package.

doodled is:

It searches your hard drive for files using pattern matching on meta-data. It extracts file-format specific meta-data using libextractor and builds a suffix tree to index the files. The index can then be searched rapidly. It is similar to locate, but can take advantage of information such as ID3 tags. It is possible to do full-text indexing using the appropriate libextractor plugins. It also supports using FAM to keep the database up-to-date.

This is the daemon to keep the doodle database automagically up-to-date.

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

sudo apt-get -y install doodled

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

You can also use apt command to install doodled.

sudo apt -y install doodled

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

sudo aptitude install doodled

Summary

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