How to find recently installed RPMs
rpm -qa --last will return all installed rpm packages with their installed time. The last installed packages will be at the top of the list. rpm -qa --last | less is will return all installed packages with their install date. Less allows you to scroll through the results. rpm -qa --last | tail -n [lines] will return the last 5 packages. Replace [line] with any number you want, in my case 5 for file lines. ...