hadori command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
hadori: command not found
or when using sudo you get the following error message
sudo: hadori: command not found
Solutions to hadori: command not found
How To Fix hadori: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu hadori is provided by hadori package.
hadori is:
This might look like yet another hardlinking tool, but it is the only one which only memorizes one filename per inode. That results in less memory consumption and faster execution compared to its alternatives. Therefore (and because all the other names are already taken) it’s called “HArdlinking DOne RIght”.
Advantages over other hardlinking tools:
- predictability: arguments are scanned in order, each first version is kept
- much lower CPU and memory consumption
To fix this problem, we can install more using the command below.
sudo apt-get -y install hadori
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install hadori.
sudo apt -y install hadori
Or if you have aptitude installed you can use the following command.
sudo aptitude install hadori
Summary
In this tutorial we learn how to fix hadori command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.