user3138046
user3138046

Reputation: 113

How to check recently installed rpms?

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

Answers (2)

Yogesh
Yogesh

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

c4f4t0r
c4f4t0r

Reputation: 1641

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

 yum list available

Upvotes: -1

Related Questions