<body><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar.g?targetBlogID\x3d11356004\x26blogName\x3dxception\x26publishMode\x3dPUBLISH_MODE_BLOGSPOT\x26navbarType\x3dBLUE\x26layoutType\x3dCLASSIC\x26searchRoot\x3dhttps://openrent.blogspot.com/search\x26blogLocale\x3den_US\x26v\x3d2\x26homepageUrl\x3dhttp://openrent.blogspot.com/\x26vt\x3d-4655156434419967503', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>

Need a 32-bit package on 64-bit RHEL?

If you need to install a 32-bit package on a 64-bit version of RHEL, you simply pass up2date the "-arch=i386" parameter. For example, many Oracle products still depend on the presence of 32-bit libraries on the server. One such package is the "xorg-x11-deprecated-libs" package.

A normal 64-bit RHEL install places the 64-bit libraries for this package in the /usr/X11R6/lib64 directory. However, the Oracle installer looks for the 32-bit version of the packages in the /usr/X11R6/lib directory, and they are absent from the directory. To install these 32-bit versions, use the architecture parameter to up2date, like this:

$ up2date --arch=i386 xorg-x11-deprecated-libs

This will install the 32-bit version of xorg-x11-deprecated-libs and any dependencies.

NOTE: You can also direct a 64-bit package to install with this command: up2date --arch=x86_64 xorg-x11-deprecated-libs