How to Find Package Names for Applications on Fedora?

0
46
Asked By CuriousPenguin92 On

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

Answered By ShellGuru On

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.

Answered By TechExplorer77 On

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!

CodingNinja21 -

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

Answered By KDEEnthusiast On

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!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.