I am trying to find some recently installed rpms on my RedHat Linux system. Does RPM provide any way to do this?
I have tried
# rpm -qa
But it only provides installed rpms. What are the options available for this?
You should try
# rpm -qa --last
It provides a detailed summary of installed rpms with date and time stamp.
# rpm -qa --last | more