Reputation: 113
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?
Upvotes: 11
Views: 13989
Reputation: 673
You should try
# rpm -qa --last
It provides a detailed summary of installed rpms with date and time stamp.
# rpm -qa --last | more
Upvotes: 14
Reputation: 1641
If you mean rpm not installed but available on yum repos, you can use
yum list available
Upvotes: -1