How to search entire hard drive for a file?
Trying to locate a file, how can I search the entire hard drive for a file?
A simple
find / -type f -name ""
would do the trick if you know exact filename.find / -type f -iname "filename*"
if you want to match more files (ignore case).Avoid
-type
option if you want to search for directories etc. See manual of find for more information. To see the manual, issue the command:man find
This will also search all mounted devices as well, might want to just search `/mount/hddyouwanttosearch`
Worth noting that find is really slow, compared to an indexed search system, such as locate (but also more powerful)
You could also use
locate
to look for commands. Why do people use locate if find does the job? Because locate is much faster than find since it just searches through database(s) of indexed locations to find your file/regex.Examples:
locate some-file.avi
searches through database(s) of almost every file on the disk for a file called "some-file.avi".locate -i "some-file.avi"
will ignore the case of the file you are searching for.locate -i "*.txt"
will display a list of locations of all the files with **.txt* extension on your system.man locate
for more info on the file.You might need to run
updatedb
first to ensure the index database is up to date, otherwise, 'locate' might not return what you are looking for.Note that `updatedb` must be run as root.
this is WAY faster than find \ holy cow... thanks!
If `updatedb` adds `/` to the index by default, how can it still be faster than `find /`?
Start by clicking the "Home Folder" icon in the launcher.
In the window that opens, click "Search".
Type what you want to search for in the box, then press enter.
Under the dropdown for location, choose your hard drive, then click reload.
The results will then be displayed. Hope that helps!
The man who asked it states he uses a server, so there is no GUI. But that's a great answer anyway!
If you're looking for a string inside a file, you can use grep. Here's a sample command:
grep -r -i "some string" /home/yourusername
This will find
"some string"
in/home/yourusername
directory. The search will ignore case (-i
) and recurse directories (-r
). You can use/
as the directory to search in the whole directory but that might not be very efficient.On Ubuntu, i know that everyone wants to be dogmatic about using command line all the time, and I have in the past been that way, but I love the Gnome "Search for files..." tool. I think its awesome.
well i'm on a server
You should try then the KDE search. It is far better than the gnome one. I am still waiting for Nautilus to catch up with the versatility that the KDE search system has. Dolphin/Konqueror are far better because of it.
Yeah, I was thinking about switching to Kubuntu actually. I'll take a look at it.
For a Desktop setup, Install "gnome-search-tool"
sudo apt-get install gnome-search-tool
Don't install this in a server, it will also install the ubuntu desktop package.
Thanks to @Rinzwind for pointing that out.Filters inlude:
- Choose the folder you want to search. In this case
\
- Contains the text - this is the file name.
- Date Modified - less or more than in number of days.
- File size - at least or at most a specified size. You can also search empty files.
- File owner - user, group or unrecognized owner.
- Regular expressions - matches regular expressions.
- You can choose to show hidden files, follow symbolic links or exclude other filesystems.
@Rinzwind The question was `Trying to locate a file, how can I search the entire hard drive for a file?` There is no 'server-install' anywhere...
@Rinzwind Hahah. Nice one. Let me edit my answer and say this is for a desktop setup alone.
- Choose the folder you want to search. In this case
If you don't want to remember
find
(which is a very powerful) parameters you could install from official repos:- kfind - file search utility
- gnome-search-tool - GNOME tool to search files
- catfish - File searching tool which is configurable via the command line
The three of them are great, but I found kfind the best.
From Ubuntu Community help wiki you might find useful:
- dpkg -L|--listfiles ... List files `owned' by package(s).
- dpkg -S|--search ... Find package(s) owning file(s).
If need to find nested in some dirs:
find / -type f -wholename "*foo/bar/filename"
License under CC-BY-SA with attribution
Content dated before 6/26/2020 9:53 AM
nazar2sfive 4 years ago
http://askubuntu.com/questions/714091/my-quest-to-find-the-fastest-search-app-for-linux