How to check install packages on RHEL
Here are the ways to check installed packages on RHEL (Red Hat Enterprise Linux):
Using yum or dnf:
List all installed packages:
yum list installed
Check for a specific package:c
yum list installed | grep <package_name>
Replace <package_nam...
nayanp.hashnode.dev1 min read