10

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?

user3138046
  • 103
  • 1
  • 5

2 Answers2

13

You should try

#rpm -qa --last 

it provide a detailed summary of installed rpms with date and time stamp. Hope it helps you.

#rpm -qa --last | more
Yogesh
  • 663
  • 8
  • 17
-1

If you mean rpm not installed but available on yum repos, you can use

 yum list available
c4f4t0r
  • 1,563
  • 15
  • 24