banner
Dave Horner's Website - Yet another perspective on things...
Home Tech Talk Programming RPM - Package management
If you appreciate the information found on this website, please drop me a line!

Who's Online

We have 23 guests online
Content View Hits : 1157138
moon and stars
How did you find my site?
 
How often do you answer random online questions?
 

Random Quote

The imagination of nature is far, far greater than the imagination of man. -- Richard Feynman
100_1359
MOVIE_STAR_015
autumndog
106_0636

RPM - Package management

Thursday, 18 August 2005 00:59
A good place for information is from he maxrpm book
http://www.rpm.org/max-rpm/s1-rpm-query-handy-queries.html
But here are my favorites:

Finding the Largest Installed Packages
rpm -qa --queryformat '%{name}-%{version}-%{release} %{size}\n' | sort -nr +1

Finding Recently Installed Packages
rpm -qa --queryformat '%{installtime} %{name}-%{version}-%{release} %{installtime:date}\n' | sort -nr +1 | sed -e 's/^[^ ]* //'

Last Updated on Thursday, 25 August 2005 19:57