If you're just looking for a string in the file name, you can do the following:
Code:
find / -name *string* -print
Now, the above command would need to be run at root as it goes through all directories - beginning at root - and checks all files.
Do
man find for more info. on the command so you can tailor it to your specific needs.
j.