kfind command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
kfind: command not found
or when using sudo you get the following error message
sudo: kfind: command not found
Solutions to kfind: command not found
How To Fix kfind: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu kfind is provided by kfind package.
kfind is:
KFind can be used as a standalone search tool, launched by KRunner or from your menu. It is also integrated into Konqueror as “Find File” in the “Tools” menu. It allows you to find files by name, type or content.
To fix this problem, we can install more using the command below.
sudo apt-get -y install kfind
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install kfind.
sudo apt -y install kfind
Or if you have aptitude installed you can use the following command.
sudo aptitude install kfind
Summary
In this tutorial we learn how to fix kfind command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.