Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 842
user3138046 Avatar asked Dec 26 '13 23:12

user3138046


People also ask

How check install rpm history?

$ rpm -q <package-name> --last Example: Below command shows the update history of kernel. For complete package update history use the following command.

Where are rpms stored after install?

Most files pertaining to RPM are kept in the /var/lib/rpm/ directory.

How do you check the latest rpm is installed in Linux?

Using an option -q along with the package name will display whether the RPM package is installed or not. The command is as follows: # rpm -q apacheds-2.0. 0.

How do I tell what version of rpm I have installed?

If you want to know the version of an installed package : rpm -q YOURPACKAGE This works on all RPM systems. On RedHat/Fedora, see yum.


1 Answers

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
like image 139
Yogesh Avatar answered Oct 02 '22 23:10

Yogesh