note command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
note: command not found
or when using sudo you get the following error message
sudo: note: command not found
Solutions to note: command not found
How To Fix note: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu note is provided by note package.
note is:
This is a small console program similar to knotes, which allows you to manage notes from commandline. Note can use different database-backends for notes-storage. It ships with a DBI-based mysql-module (which can also be used by others through a DBI-based supported DBMS) and another module, which uses a binary file for storage and a DBM module.
To fix this problem, we can install more using the command below.
sudo apt-get -y install note
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install note.
sudo apt -y install note
Or if you have aptitude installed you can use the following command.
sudo aptitude install note
Summary
In this tutorial we learn how to fix note command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.