I have to create a script that will download 8 libraries. However, on the server where we have all the libraries, I can only find 2 or 3 of these 8.
I believe these 2 or 3 actually depend on other libraries to work, so when I request via yum to download 2 or 3 of these libraries, all the 8 libraries will actually be downloaded.
I know there is a command to check out the dependencies of a specific rpm package:
rpm -qpR (name of rpm package)
My question is the following: is there a "reverse" command that, given a specific library name, will look for all the rpm packages that depend on this library?
--whatrequires
option? – devnull Oct 23 '13 at 09:47