Centos7安装32位库用来安装32位软件程序

时间:2021-11-28 04:37:12

打算在centos7上安装一个远程控制软件,发现teamviewer只有centos的32位版本,试着安装了一下,各种报错,尝试多次无果。于是试着用向日葵远程控制软件,也报错,貌似也是只支持32位。

按照网上乱七八糟的教程,发现都是报错,后来终于找到解决方法,如下

查看是否有32位库

yum list |grep xulrunner

安装32位库

yum install xulrunner.i686

报错

。。。此处太长,忽略
...you can also use --setopt=protected_multilib=false to remove #这行是系统推荐做法
this checking, however this is almost never the correct thing to
do as something else is very likely to go wrong (often causing
much more problems). Protected multilib versions: expat-2.1.0-10.el7_3.i686 != expat-2.1.0-8.el7.x86_64
Error: Protected multilib versions: libuuid-2.23.2-33.el7_3.2.i686 != libuuid-2.23.2-33.el7.x86_64

既然有提示,那么就按照它的提示来呗

yum install –setopt=protected_multilib=false xulrunner.i686

在这里我把setopt放到命令的最后面,发现还是报一样的错误,然后放到上面的这个位置

然后就能安装成功了