47 How to find files on linux?

sudo updatedb then locate file_name

find command can also be used follows

find . -iname "*process_input*"
 

The above command says to find file name anywhere in the tree starting at current location and below, where the file name has the above string anywhere in the name.

The -iname options says to search case insensetive.