Google Site SearchFN Site Search FN Blog Login FN Blog Login
Site Navigation:
 
 

All you have to know about RPM

by Alexandre de Abreu

How can I figure out the size of a installed package?

The followin RPM command is useful when you are having problems with less hard disk space, it'll print a list of installed packages sorted by package size(in bytes):

rpm -qa --queryformat '%10{size} %{name}-%{version}\n' | sort -n

Thanks to Ramon Gutierrez for this one.