1

i install several application using yum in CentOS now i like to see the installed application path's where each component yum downloaded got installed how can i do that ?

user61104
  • 523
  • 1
  • 8
  • 16

1 Answers1

3

You can use rpm -ql PACKAGE_NAME or rpm -qpl /path/to/RPM/file to get the paths to all the files and directories that are managed by the RPM. If you're looking for the actual RPMs it downloaded, I believe it puts the download RPM's into /var/cache/yum/*.rpm.

Andrew M.
  • 10,982
  • 2
  • 34
  • 29