> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# I Found Everything Search Engine Alternative for Linux Users
- URL: https://itsfoss.com/fsearch/
- Published: 2025-10-31T09:40:12.000Z
- Updated: 2025-10-31T09:40:12.000Z
- Description: A GUI app for searching for files on your Linux system? Well, why not? Not everyone likes the dark and spooky terminal.
- Author: Pulkit Chandak
- Tags: Applications

A desktop-wide search application can be the key to speeding up your workflow by a significant amount, as anything you might look for will almost be at your fingertips at any given moment. 

Today, we'll be looking at a GUI desktop application that does exactly that. 

## FSearch: Fast, Feature-rich GUI Search App

[FSearch](https://cboxdoerfer.github.io/fsearch/?ref=itsfoss.com) is a fast file search application, inspired by [Everything Search Engine](https://www.voidtools.com/?ref=itsfoss.com) on Windows. 

It works in an efficient way without slowing down your system, **giving you results as you type the keywords in**. The way it does this is by indexing the files from the directories in advance, updating them at a fixed interval, and storing that information to search through whenever the application is used.

![First screen of freshly installed FSearch](https://itsfoss.com/content/images/2025/10/fsearch_first-screen.png)

It is written in C and based on GTK3, which is ideal for GNOME users but might not look as good on Qt based desktop environments like KDE. Let's look at some of the features this utility offers.

### Index Inclusion/Exclusion

The first thing that you need to do after installation and the most crucial aspect of all is to specify to the utility what are the directories that you want it to search for anything in. Besides the inclusion category, you can also specify what directories you want excluded from the search. Another extremely helpful option is to exclude the hidden files from being searched which can be the case if you only want to search the files as you see them on your file explorer.

![Menu for specifying excluded files in FSearch](https://itsfoss.com/content/images/2025/10/fsearch_excluded-directories.png)

Besides that, you can also configure how often the database needs to be refreshed and updated. This will depend on how often the relevant files on your system change, and hence should be your own choice.

### Wildcard and RegEx Support

The search input supports the wildcard mode by default, which are often used for specifications on the command line. For example, if I want to search for all files that contain "Black" in the name, I can give the input as such:

![Search example showing usage of wildcards in FSearch](https://itsfoss.com/content/images/2025/10/fsearch_wildcard-example.png)

Here, "\*" essentially means everything. So any files with anything at all before and after the word "Black" will be listed. There are many more wildcards like this such as "?" for one missing character, and "\[ \]" specifying ranges. You can read more about them [here](https://tldp.org/LDP/GNU-Linux-Tools-Summary/html/x11655.htm?ref=itsfoss.com).

The other option is to specify the search results by the [RegEx formatting](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular%5Fexpressions/Cheatsheet?ref=itsfoss.com), which is a different style in itself. It can be activated using Ctrl+R, and switched by the same.

### Fast Sort

You can quickly sort out the results based on name, path, size or last modification date right from the interface, as the results are shown with these details present. All it takes is one click on the right detail header (or two clicks if you want them in a descending instead of an ascending order).

### Filetype Filter

The searched files can be of different categories defined in the utility itself, which are defined by the extensions of the files that the results yield. There is a button on the right of the search bar where the search results category can be specified, the default being "All". The categories are:

- All
- Files
- Folders
- Applications (such as .desktop)
- Archives (such as .7z, .gzip, .bz)
- Audio (such as .mp3, .aac, .flac)
- Documents (such as .doc, .csv, .html)
- Pictures (such as .png, .jpg, .webp)
- Videos (such as .mp4, .mkv, .avi)

The excellent feature is that these categories and their list of extensions are modifiable. You can add or change any of the options if it doesn't fit your needs well.

![Various categories and their extensions in FSearch](https://itsfoss.com/content/images/2025/10/fsearch_category-editor.png)

### Search in Specific Path

Another interestingly important search option is to also search in the path of the filenames. This becomes relevant when you remember the approximate location of the file or part of the path or something as such. It seems like a minor detail but can be a real savior when the appropriate time arises. An example of it can be this:

![Searching in path in FSearch](https://itsfoss.com/content/images/2025/10/fsearch_path-searching-mode.png)

This mode can be activated using the keyboard shortcut Ctrl+U.

### Other Features

There are other minor features that help in the customization, such as toggling the case sensitivity of the search terms (which can also be done with the Ctrl+I keyboard shortcut), single-clicking to open files, pressing Esc to exit, remembering window size on closing, etc.

## Installing FSearch on Linux

FSearch is available on various distributions in multiple different ways. First, to cover the distro-independent option, Flatpak. [FSearch exists on Flathub](https://flathub.org/en/apps/io.github.cboxdoerfer.FSearch?ref=itsfoss.com) and can be installed with a simple search on any distribution where Flathub is enabled internally in the app store such as Fedora. If not from the store, you can find the .flatpakref file [here](https://flathub.org/en/apps/io.github.cboxdoerfer.FSearch?ref=itsfoss.com) and (considering it is downloaded in the Downloads folder) install it with:

```
sudo flatpak install io.github.cboxdoerfer.FSearch.flatpakref
```

On Ubuntu based distributions, there are two options, a stable release and a daily one. To add the repository the stable version, enter this command:

```
sudo add-apt-repository ppa:christian-boxdoerfer/fsearch-stable

```

Whereas for the daily release:

```
sudo add-apt-repository ppa:christian-boxdoerfer/fsearch-daily
```

In either case, then enter the following commands after to install the application:

```
sudo apt update
sudo apt install fsearch
```

On Arch-based distributions, use the following command:

```
sudo pacman -S fsearch
```

On Fedora, the installation can be done by entering:

```
dnf copr enable cboxdoerfer/fsearch
dnf install fsearch
```

If none of these apply, you can always install from source or find instructions on the [official website](https://cboxdoerfer.github.io/fsearch/?ref=itsfoss.com).

## Final Thoughts

FSearch does what it claims to do without exceptions and hurdles. It is very fast, not very taxing on the hardware, has very sensible configuration options, and looks pretty good while doing its job. A huge recommendation from my side would be to add a keyboard shortcut to open FSearch (the process will depend on your distribution), something very accessible like Shift+S perhaps to easily open the utility and use it immediately.

I know that for many Linux users, nothing replaces the [find command](https://linuxhandbook.com/find-command-examples/?ref=itsfoss.com) clubbed with xargs and exec but still, not all desktop Linux users are command line ninjas. That's why desktop search apps like FSearch, [ANGRYsearch](https://itsfoss.com/angrysearch/) and [SearchMonkey](https://itsfoss.com/searchmonkey-search-text-files-linux/) exist. [Nautilus' built-in file search](https://itsfoss.com/nautilus-file-search/) works well, too.

[Mastering Nautilus File Search in Linux DesktopBecome a pro finder with these handy tips to improve your file search experience with GNOME’s Nautilus file search.![](https://itsfoss.com/content/images/icon/android-chrome-192x192-718.png)It's FOSSSreenath![](https://itsfoss.com/content/images/thumbnail/nautilus-file-search-2.png)](https://itsfoss.com/nautilus-file-search/)

Please let us know in the comments if this is an application you'd like to use, or if you have any other preferences. Cheers!