I have a RHEL 5 server and I want to know the last date in which it was updated.

Is this technically feasible? If yes, how?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 2 down vote accepted

One way to do this is to look at the installation dates of the packages.

Show the latest installed rpm:

rpm -qa --queryformat '%{installtime} (%{installtime:date}) %{name}\n' | sort -n | tail -n 1

Note: This won't tell you if someone ran yum update but there were no packages to install / update, which may or may not matter to you.

(Credit to Sean Reifschneider, this information is from his post)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.