1753498 Members
4620 Online
108794 Solutions
New Discussion

installed path..?

 
SOLVED
Go to solution
mw_4
Frequent Advisor

installed path..?

I want to know already installed packages information
ie) installed packages version or installed exec path..
How can I get to know that.
Rpm -aq issues many rpm packages ,so for instance if I get to know the exec path or other additional infomations for insalled packages zlib-1.1.3-22 or
zlib-devel-1.1.3-22 ?
Step by step
1 REPLY 1
I_M
Honored Contributor
Solution

Re: installed path..?

Hi

Use rpm -ql zlib
after you installed zlib.

or
Use rpm -qlp zlib-1.1.3-22.i386.rpm
before you install zlib.

Use rpm -qf /path/to/file
to know the name of RPM which include the file.

Good luck