Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Installed RHEL for 64 bit but also installed 32bit rpm packages

Status
Not open for further replies.

ady2012

MIS
Jun 6, 2010
108
US
I have installed RHEL for 64 bit.
After I have checked all rpm packages using rpm -qa.
And I can see same rpm package name for 64 bit and 32 bit on RHEL.
Any suggestion to install RHEL for 64 bit without install rpm packages for 32 bit.

Thanks
 
Normally Red Hat comes with 2 disks, one for 32 bit and one for 64 bit.
 
It is normal for RHEL 64-bit to install many 32-bit packages, I believe mainly for backward compabitility reasons (some software is not necessarily available in 64-bit versions).

On a fairly typical installation this is the distribution of platform types I see:

Code:
$ rpm -qa --qf '%-40{PLATFORM}\n' | sort | uniq -c
      7 i386-redhat-linux
    301 i386-redhat-linux-gnu
      3 i686-redhat-linux-gnu
    103 noarch-redhat-linux-gnu
      2 (none)
     17 x86_64-redhat-linux
      1 x86_64-redhat-linux6E
    874 x86_64-redhat-linux-gnu

Similar to yours?

Annihilannic.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top