How come the unix locate command still shows files/folders that aren't there any more? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T12:41:40Zhttp://stackoverflow.com/feeds/question/1060919http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1060919/how-come-the-unix-locate-command-still-shows-files-folders-that-arent-there-any0How come the unix locate command still shows files/folders that aren't there any more?littlejim842009-06-29T22:35:24Z2009-07-07T03:34:51Z
<p>I recently moved my whole local web development area over to using MacPorts stuff, rather than using MAMP on my Mac. I've been getting into Python/Django and didn't really need MAMP any more.</p>
<p>Thing is, I have uninstalled MAMP from the Applications folder, with the preferences file too, but how come when I run the 'locate MAMP' command in the Terminal it still shows all my /Applications/MAMP/ stuff as if it's all still there? And when I '<code>cd</code>' into /Applications/MAMP/ it doesn't exist?</p>
<p>Something to do with locate being a kind of index searching system, hence things these old filepaths are cached? Please explain why, and how to sort it so they don't show anymore.</p>
http://stackoverflow.com/questions/1060919/how-come-the-unix-locate-command-still-shows-files-folders-that-arent-there-any/1060937#10609372Answer by Val for How come the unix locate command still shows files/folders that aren't there any more?Val2009-06-29T22:40:37Z2009-06-29T22:40:37Z<p>You've got the right idea: <code>locate</code> uses a database called '<code>locatedb</code>'. It's normally updated by system cron jobs (not sure which on OS X); you can force an update with the <code>updatedb</code> command. See <a href="http://linux-sxs.org/utilities/updatedb.html" rel="nofollow">http://linux-sxs.org/utilities/updatedb.html</a> among others.</p>
http://stackoverflow.com/questions/1060919/how-come-the-unix-locate-command-still-shows-files-folders-that-arent-there-any/1060940#10609400Answer by Lars Haugseth for How come the unix locate command still shows files/folders that aren't there any more?Lars Haugseth2009-06-29T22:41:54Z2009-06-29T22:41:54Z<p>Indeed the <em>locate</em> command searches through an index, that's why it's pretty fast.
The index is generated by the <em>updatedb</em> command, which is usually run as a nightly
or weekly job.</p>
<p>So to update it manually, just run <em>updatedb</em>.</p>
http://stackoverflow.com/questions/1060919/how-come-the-unix-locate-command-still-shows-files-folders-that-arent-there-any/1060941#10609410Answer by Jim Puls for How come the unix locate command still shows files/folders that aren't there any more?Jim Puls2009-06-29T22:42:01Z2009-06-29T22:42:01Z<p>According to the man page, its database is updated once a week:</p>
<pre><code>NAME
locate.updatedb -- update locate database
SYNOPSIS
/usr/libexec/locate.updatedb
DESCRIPTION
The locate.updatedb utility updates the database used by locate(1). It is typically run once a week by
the /etc/periodic/weekly/310.locate script.
</code></pre>
http://stackoverflow.com/questions/1060919/how-come-the-unix-locate-command-still-shows-files-folders-that-arent-there-any/1060947#10609470Answer by James Caccese for How come the unix locate command still shows files/folders that aren't there any more?James Caccese2009-06-29T22:43:13Z2009-06-29T22:43:13Z<p>Take a look at the locate man page</p>
<p><a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?locate+1" rel="nofollow">http://unixhelp.ed.ac.uk/CGI/man-cgi?locate+1</a></p>
<p>You'll see that locate searches a database, not your actual filesystem.
You can update that database by using the updatedb command.</p>
<p>Also, since it's a database, unless you do update it regularly, locate wouln't find files that are in your filesystem that arn't in the database.</p>
http://stackoverflow.com/questions/1060919/how-come-the-unix-locate-command-still-shows-files-folders-that-arent-there-any/1061559#10615591Answer by Ted Naleid for How come the unix locate command still shows files/folders that aren't there any more?Ted Naleid2009-06-30T03:19:32Z2009-06-30T03:19:32Z<p>The other answers are correct about needing to update the locate database. I've got this alias to update my locate DB:</p>
<pre><code>alias update_locate='sudo /usr/libexec/locate.updatedb'
</code></pre>
<p>I actually don't use locate all that much anymore now that I've found <a href="http://www.oreillynet.com/pub/a/mac/2006/01/04/mdfind.html" rel="nofollow">mdfind</a>. It uses the spotlight file index which OSX is much better at keeping up to date compared to the locatedb. It also has quite a bit more power in what it can search from the command line.</p>