This is how to find files in Linux assuming you know some little detail about it.
To find "myfile.txt" in the current directory and any subdirectory under the current one.
find -name 'myfile.txt'
To find for any file named "myfile.txt" on the root and all subdirectories from the root.
find / -name 'myfile.txt'
To find for any file beginning with "file" in the current directory and any subdirectory.
find -name 'file*'
To find for any file that is larger then 1000k.
Recent comments
1 min 39 sec ago
4 min 1 sec ago
25 min 57 sec ago
2 days 14 hours ago
1 week 6 days ago
5 weeks 6 days ago
6 weeks 2 days ago
6 weeks 2 days ago
9 weeks 4 days ago
10 weeks 3 days ago