Hello everyone. Has anybody ever tried to install 32bit wine to 64bit centos. I was able to run 64 bit wine, but some of mine application require 32 bit wine, but I cannot install it. It says to install 32bit development libraries at first. Does it make sense, what I'm doing ? I will be really appreciated any help.
Cheers Igor
On 11/30/2013 01:55 AM, Igor Littig wrote:
Hello everyone. Has anybody ever tried to install 32bit wine to 64bit centos. I was able to run 64 bit wine, but some of mine application require 32 bit wine, but I cannot install it. It says to install 32bit development libraries at first. Does it make sense, what I'm doing ? I will be really appreciated any help.
Cheers Igor
Hey Igor,
You need the 32 bit compatibility layer. Perhaps this link will help:
https://www.centos.org/forums/viewtopic.php?t=2265
Hi Mark.
Thanks for the response, but the link did not help. When I try to install wine it says
"configure: error: Cannot build a 32-bit program, you need to install 32-bit development libraries."
But when I'm installing " libstdc++.i686" I'm getting the error
"Protected multilib versions: libstdc++-4.4.7-4.el6.i686 != libstdc++-4.4.7-3.el6.x86_64 "
Does anybody have ideas how can I work around this problem ?
2013/12/1 Mark LaPierre marklapier@aol.com
On 11/30/2013 01:55 AM, Igor Littig wrote:
Hello everyone. Has anybody ever tried to install 32bit wine to 64bit centos. I was able to run 64 bit wine, but some of mine application
require
32 bit wine, but I cannot install it. It says to install 32bit
development
libraries at first. Does it make sense, what I'm doing ? I will be really appreciated any help.
Cheers Igor
Hey Igor,
You need the 32 bit compatibility layer. Perhaps this link will help:
https://www.centos.org/forums/viewtopic.php?t=2265
-- _ °v° /(_)\ ^ ^ Mark LaPierre Registered Linux user No #267004 https://linuxcounter.net/
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
From: Igor Littig igor.littig@gmail.com
But when I'm installing " libstdc++.i686" I'm getting the error "Protected multilib versions: libstdc++-4.4.7-4.el6.i686 != libstdc++-4.4.7-3.el6.x86_64 " Does anybody have ideas how can I work around this problem ?
man yum.conf protected_multilib Either ‘1’ or ‘0’. This tells yum whether or not it should perform a check to make sure that multilib pack- ages are the same version. For example, if this option is off (rpm behaviour) pkgA-1.x86_64 and pkgA-2.i386 can be installed at the same time. However this is very rarely desired. install only packages, like the kernel, are excempt from this check. The default is ‘1’.
As you can see, the libs versions in your error message are different... $ rpm -q libstdc++ libstdc++-4.4.7-4.el6.x86_64 libstdc++-4.4.7-4.el6.i686
JD