系统中缺少一个lib库 libz.so.1文件,使用yum安装会自动找到相关的rpm包,如下命令 # yum -y install libz.so.1 Resolving Dependencies--> Running transaction check---> Package zlib.i686 0:1.2.3-29.el6 will be installed--> Finished Dependency ResolutionError: Protected multilib vers…
例如:安装zlib出错 yum install zlib-1.2.3-29.el6.i686 Error: Protected multilib versions: zlib-1.2.3-29.el6.i686 != zlib-1.2.3-27.el6.x86_64 You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest 原因:…
Error: Multilib version problems found. This often means that the root cause is something else and multilib version checking is just pointing out that there is a problem. Eg.: yum install --enablerepo=centosplus openssl-devel https://www.leelib.com/2…
安装失败 在执行yum install glibc.i686 libstdc++.i686 libcurl.i686安装命令时出现Protected multilib versions 解决方案 在命令后面加--setopt=protected_multilib=false即可. yum install libstdc++.i686 --setopt=protected_multilib=false…
yum 安装时报错 由于yum的时候意外退出造成的,虽然也给出提示当前占用进行的id,但是执行kill -9  强制杀死进程后,情况没能改变. 解决方法:rm -f /var/run/yum.pid然后重新执行yum就可以了…
安装PHP过程中,make步骤报错:(集合网络上各种解决方法) (1)-liconv -o sapi/fpm/php-fpm /usr/bin/ld: cannot find -liconv collect2: ld returned 1 exit status make: *** [sapi/fpm/php-fpm] Error 1 [root@localhost php-5.4.5]# 初步定位是iconv的问题解决方法 把libiconv卸载掉进入libiconv源码目录执行#make u…
YUM安装MONGODB发生Error in PREIN scriptlet in rpm package mongodb-enterprise-server-4.0.2-1.el6.x86_64错误 小知识1: 使用root权限都不能编辑某个文件,很可能是使用chattr命令锁定该文件了.通过chattr命令修改属性能够提高系统的安全性,但是它并不适合所有的目录.chattr命令不能保护/./dev./tmp./var目录.lsattr命令是显示chattr命令设置的文件属性. 使用lsatt…
数据库安装后无法访问,mysql重启报错: 或报错:MySQL is running but PID file could not be found 解决方法: 第一种方法:看磁盘是否已满:df –h 若已满,清理下垃圾文件 第二种方法:查看数据库运行状态 /etc/init.d/mysql status 提示ERROR! MySQL is running but PID file could not be found 1.ps aux |grep mysql 查看mysql进程 若看到如上内容…
解决:python2.7升级到python3后,用pip进行安装时报Fatal error in launcher:Unbale to create process using`"" 通过查资料查到:http://www.scriptscoop2.com/t/9cebc32c6ebc/python-fatal-error-in-launcher-unable-to-create-process-using-c-program-files.html 借鉴MiguelCldn 提供的方法,…
安装ROS时sudo rosdep init指令报错: ERROR: cannot download default sources list from: https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/sources.list.d/20-default.list Website may be down. 解决(以下方法依次执行,一直到搞定: (1)之前曾经安装过 ROS 系统的某个版本,按照提示删除已经存在的初始化文件…