Find Which RPM Package Provides a Command in Fedora
When you need to identify which package installed a command on your Fedora system, you have several reliable methods depending on whether the package is already installed. Quick lookup for installed commands The fastest approach combines which to locate the command with rpm to query the owning package: $ rpm -qf $(which ping) iputils-8.40-4.fc40.x86_64 The…