cancel
Showing results for 
Search instead for 
Did you mean: 

To display 'bit size' of operating system packages

Former Member
0 Kudos

Dear Experts,

rpm -q binutils compat-db compat-gcc  --qf '%{name}-%{version}.%{arch}\n'|sort

This command display the given OS packages with version & architecture type in ascending order

We want to display them along with their bit size(means: that particular OS package is of How many bits )

For example: glibc-devel-32bit

Could anyone tell how to modify command...

Message was edited by: Sumit Jain

Message was edited by: Sumit Jain

Message was edited by: Sumit Jain

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

Try this one....

rpm -qa --qf '%{name}-%{version}-%{release}.%{arch}\n'|egrep 'binutils|compat|glibc|gcc|libstd|cpp|make|ODBC|libaio|ksh|motif|libelf|sysstat'| egrep -v 'avahi|cdrkit|ldap|ssl'|sort

Answers (0)