How to check which dependencies are required to install DLP
RHEL 7.x, RHEL 8.x
To provide a list of dependencies without downloading or installing
You can accomplish this a few ways (in this article we are using the uniq and sort for formatting. Which makes it easier to read. Those commands are not required)
Method 1:
rpm -qR *.rpm | sort | uniq
Method 2: Using Yum
Method 3: Using repoquery:
NOTE: using repoquery requires the yum-utils package to be installed.
repoquery gives a uniq list of packages to be installed where the other two commands will give you all the different versions of each package.