yum list available
The above command will list all available packages, including 32-bit ones, with the extension .i686
, install those that are required.
thereby, similar packages in a RedHat-based system apt-get lib32stdc++6 lib32z1
are listed below
yum -y install libstdc++.i686 zlib.i686
source
share