Ubuntu – Does linux filesystem support fast file searching /indexing

search

I wonder why aren't there any tool that enable one to find files on his harddisk very rapidly like "search everything" does .Just type a part of the file name and all files containing the keyword will show up instantly . Isn't it possible to design a program to record the names of all files in some directory in a database so that you can search the database quickly for file names ?

Best Answer

Run sudo updatedb and locate [ filename or part ]
updatedb updates the index database.
If you want to locate a program, run whereis [ program name ]

Related Question