Linux : How to show the complete installed package list on RHEL/CentOS?
Here is two useful commands to display all the installed packages and version in your RHEL/CentOS Linux system. 1. Display a comprehensive and formatted list using Yum : yum list installed | more 2. Display the list of RPM package with their full name : rpm -qa –qf “%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n” TIP : The suggestion #2 is… Read More »