Manual way:
- 1. Go to the RedHat website: https://access.redhat.com/downloads/content/69/ver=/rhel---6/6.9/i386/packages
- 2. Choose the i686 packages
- 3. Search for the packages your need, download to your 64-bit OS and do a "rpm -ivh"
The problem with this is that you might need to download a whole bunch of packegas in order to install a single package due to dependencies. This way is definitely not recommended.
Preferred way (yum):
- 1. You need to register and subscripe to RedHat
- subscription-manager register
- subscription-manager attach
- 2. Update your /etc/yum.comf
add or change the line that contains: "multilib_policy" to "multilib_policy=all"
This will allow yum to install 32-bit packages without you having to specify *.i686 specifically.
Now you should be able to "yum install package-name".
No comments:
Post a Comment