I'm new to using Fedora with KDE Plasma and I'm trying to figure out how to find the package names for applications more efficiently. I learned that the command `dnf search ` gives me a long list of results, which is pretty overwhelming. Is there an easier way to identify package names that I need?
3 Answers
Another useful trick is if you know the name of an executable file, you can find its corresponding package using `dnf provides /path/to/executable`. This way, you can easily identify which package contains that specific executable you’re interested in.
You can simplify your search results by using `grep` alongside the `dnf` command. For example, if you're looking for a specific application, you can run `dnf search | grep -i "^s"`. This will narrow down the results to lines that start with your application's name, making it easier to identify its package name. Just remember to replace `` with the actual name you're searching for!
Since you're using KDE Plasma, have you tried the Discover application? It's a graphical tool for managing packages that allows you to browse and search for applications visually. It's beginner-friendly and can help you find the package names with descriptions and logos, which is nice if you're not yet familiar with everything!

Yeah, I totally agree! Using `grep` can save so much time. I often do this when searching for packages.