22

Beagle was my favorite. But it is not maintained anymore, afaik. And it does not work reasonably; it stops working spontaneously and does not return any result. How can I correct this problem and if it is not possible what alternatives are available? Thank you.

Seth
  • 58,122
kaan
  • 661

4 Answers4

13

One tool I can recommend is tracker. If you install the software, it is started automatically when you log in. It updates its index as a background process. If you want to search some item, there are different possibilities:

  1. Nautilus: Press Ctrl+f. A windows opens where you can enter your search term.
  2. GNOME applet: The deskbar applet allows you to enter a search term and shows a listing of found things.
  3. Catfish: is a application which can talk with different search programs.
  4. Console: enter tracker search foobar and tracker will start its search. Type tracker for a full list of available commands.
Pablo Bianchi
  • 15,657
qbi
  • 19,125
10

I use recoll. It's very nice.

student
  • 2,312
1

Have you considered using Tracker? It appears to be the replacement of Beagle in the Ubuntu Desktop and has been integrated with most applications in Ubuntu. sudo apt-get install tracker tracker-search-tool

Marco Ceppi
  • 48,101
0

In command-line [s]locate works like a charm.
s for secure

updatedbupdatedb update the database where file name are stored.

If you use locate like

locate foo

it will list files and path containing foo.

Usually, updatedb is executed via a cron job once a day but you can execute it to update the database as needed.

Luc M
  • 149