How can I tell when an RPM package was installed on my system?
Updated -
You can use the rpm command to achieve this. To get a list of all installed packages along with the date and time they were installed, use the command:
rpm -qa --last
For information about a specific package, specify the package_name in the command:
rpm -q --last <package_name>
For example, y...
Subscriber exclusive content
A Red Hat subscription provides unlimited access to our knowledgebase, tools, and much more.