RSS Subscription
Linux Howtos & Tutorials

Enter your email:

Delivered by


NOTE:New tutorials are from LinuxCareer.com

Poll

Do you own or wish to have iPhone?
 


Linux eBooks FREE Download
A guide to programming Linux kernel modules
Introduction to Linux - A Hands on Guide
A Newbie's Getting Started Guide to Linux

Linux from Scratch - Create Your Own Linux System - Free eBook

Linux: The Hacking Solution (v.3.0)

SQLite 3 with PHP Essential Training – Free Video Training Tutorials

This guide will introduce you to the world of GNU/Linux

The GNU/Linux Advanced Administration

A Complete Beginner's Manual for Ubuntu 10.04 (Lucid Lynx)

Advanced Bash-Scripting Guide

Set up, maintain, and secure a small office email server

Partner Linux Sites:
How-To.LinuxCareer.com
Jobs.LinuxCareer.com
TuxMachines
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
All For Linux

How do I locate all files installed from a RPM package?

Question:

Hi, recently I have installed couple packages into my Fedora Linux system. I'm just wondering how do I locate all files which had installed into my system.

Answer:

The easiest way to check all files installed on your system is to check a RPM package manifest which shows all files and location for any particular RPM package. Let's say that I downloaded a telnet-server-1.2-137.1.i586.rpm RPM package from some online source and I wish to see what this package contains and what files will I install into my system. The following command will reveal all that information:

# rpm -qlp telnet-server-1.2-137.1.i586.rpm

RPM options used:

-q : this is a general rpm query

-l : list package content

-p : package name

In case you are about to use yum package manager to install a package from a fedora package repository you can do the same but omit -p option. For example:

# yum search telnet

returns a line:

telnet.i686 : The client program for the Telnet remote login protocol

To check a content of the RPM package before installation you can do:

# rpm -ql telnet

Linux questions and answers

Share this linux post:

Submit How do I locate all files installed from a RPM package? in Delicious Submit How do I locate all files installed from a RPM package? in Digg Submit How do I locate all files installed from a RPM package? in FaceBook Submit How do I locate all files installed from a RPM package? in Google Bookmarks Submit How do I locate all files installed from a RPM package? in Stumbleupon Submit How do I locate all files installed from a RPM package? in Technorati Submit How do I locate all files installed from a RPM package? in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.


Linux eBooks FREE Download