Finding Which RPM Package Contains a File

 in

To search a list of RPM files for a particular file, execute the following command:

$ ls RPMS-TO-SEARCH | \
    xargs rpm --query --filesbypkg --package | \
      grep FILE-TO-SEARCH-FOR

Replace RPMS-TO-SEARCH with the names of the RPM files to search, and replace FILE-TO-SEARCH-FOR with the name of the file to search for. The --filesbypkg option tells the rpm command to output the name of the package as well as the name of the file.

______________________

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Correction for "Another way"

Anonymous's picture

D**n... Missed the stated intent of searching uninstalled packages.

The "--whatprovides" switch naturally only searches packages already installed on the system, not the package files.

Sorry for that.

Another way to find the file.

Anonymous's picture

Or You could just use RPM's database.

rpm -q --whatprovides FILES_TO_SEARCH_FOR

Other Usefull rpm commands

Rui Lapa's picture

Same as:
rpm -qlp RPMS-TO-SEARCH | \
grep FILE-TO-SEARCH-FOR

q - query
l - list files
p - packages

Good ones are:
--------------

1. Find the rpm which FILE (path/filename) belongs to
rpm -qf FILE

2. Verify rpm files (changes, MD5, permissions, owner, ...)
rpm -qV RPM_PACKAGE_NAME

3. List packages ordered by SIZE
rpm -qa --qf "%{SIZE} %{NAME}\n" | sort -n

4. Repackage OLD files (make rollback rpm) when upgrading an rpm
rpm --repackage -Uvh NEW_RPM_PACKAGE

rpm -qlp RPMS-TO-SEARCH |

Patricio Diaz's picture

rpm -qlp RPMS-TO-SEARCH | grep FILE-TO-SEARCH-FOR will tell you the file name, the directory it will be installed on, and that there is a package containing it, but won't tell you which package is.

Webcast
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers

Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.

Learn More

Sponsored by AMD

White Paper
Red Hat White Paper: Using an Open Source Framework to Catch the Bad Guy

Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6

Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.

Learn more about catching the bad guy in this free white paper.

Learn More

Sponsored by DLT Solutions