I tried "locate libevent", but it doesn't work. and nothing happens.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

You may have to run updatedb first, though it's often set up to run automatically.

Are you certain that path exists which includes libevent? If not try searching for something you know exists (etc, your home directory, and so on)

link|improve this answer
1  
Also if the file has been recently installed (today) there's a very good chance you need to run updatedb. – C. Ross Oct 8 '09 at 17:57
feedback

As already mentioned, locate uses a proprietary database which contains all filenames of the system (or at least of the directories which have been configured to be included in this database). To (re-) build this database you need to run updatedb.

You could also use find (e. g. find / -name 'libevent*') to search for the file which will take longer (depending on the size of your harddisk) but needs no database.

link|improve this answer
feedback

locate silently returns nothing when it doesn't find what you requested.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.