How Do I Search for Files on linux ?
find / -name “kartook” -print
This command tells find to start looking in the root directory of the filesystem.
(/) for files named (-name) kartook and then to print (-print) the full name of each file it finds.