Hey, I'm new to using Fedora with KDE Plasma and I'm trying to figure out how to identify the package names for applications. I've been using the command "dnf search " but it returns a really long list, which is pretty overwhelming. Is there a simpler way to find the package names without sifting through all that text?
3 Answers
If you know the name of the executable, you can find the package using `dnf provides /path/to/executable`. This command lets you see which package provides the specific command you're interested in, making it easier to track down.
Since you're using KDE Plasma, you can try the Discover GUI for package management. It's much friendlier for beginners and lets you browse through packages with descriptions and icons. This might help you get familiar with package names more easily than using the command line.
You might want to use `grep` to filter the output from `dnf`. For example, if you're looking for a package name that starts with a specific term, you can run `dnf search | grep -i "^s"`. The `grep` command is useful as it helps you match words in the output, and the `-i` flag makes it case insensitive.

Related Questions
How To Get Your Domain Unblocked From Facebook
How To Find A String In a Directory of Files Using Linux