I want to find in the system a file, and I know part name of it. How could I do that? I tried unsuccessfully the command:
find / "*partname*"
The problem is probably very easy however I cannot find a decent tutorial on searching files in linux. Such one that explains searching in whole system files, in subfolders, recursively, for part of specific expression(s) or excluding. Please tell me what command solves my problem and if you know a good tutorial so that I can understand how to use various parameters for searching, post a link. Thank you so much.
man find
and scroll down to examples – don_crissti Apr 06 '16 at 19:30locate
is what you want:locate partname
– glenn jackman Apr 06 '16 at 21:07