在64位的centos安装64位的oracle的时候,有时候会出现“libXext.so.6: cannot open shared object file:”的错误. 这个原因主要是oracle在安装的时候需要安装一些32位的lib,也就是类似于windows下的dll 出现这个问题,可以采用如下的解决办法: #yum install libXext.i686  即可.…
需要安装额外库: yum install libXext.x86_64 yum install libXrender.x86_64 yum install libXtst.x86_64…
安装python3遇到报错: wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz ./configure --prefix=/usr/local/Python-3.5.2 --enable-shared make make install ln -s /usr/local/Python-3.5.2/bin/python3 /usr/bin/python3   遇到报错: python3: error while loadin…
zabbix3.2启动有如下报错: # service zabbix_server startStarting zabbix_server:  /home/zabbix-server/sbin/zabbix_server: error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or directory [失败] 解决方法: 查找这个模块的位置…
执行以下代码,生成唯一的UID $fp = popen("/xxx/bin/tools/uuidgen system", "r");// $uid = fread($fp, 40960); pclose($uid); 问题:返回结果$uid为空.实际上执行popen函数后能够返回内容 resource(39) of type (stream). resource popen ( string $command , string $mode ) 参数:$command…
错误信息: /usr/local/memcacheq/bin/memcacheq: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory   查找链接包 : LD_DEBUG=libs /usr/local/memcacheq/bin/memcacheq -v | grep libevent      27382: fin…
问题 在Centos7上编译安装openssl后,运行openssl version出现如下错误: openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory 这是由于openssl库的位置不正确造成的. 解决方法: 在root用户下执行: ln -s /usr/local/lib64/libssl.so.1.1 /u…
[root@xxxx ~]# /etc/init.d/iptables restart iptables: Setting chains to policy ACCEPT: filter nat [ OK ] iptables: Flushing firewall rules: [ OK ] iptables: Unloading modules: [ OK ] iptables: Applying firewall rules: iptables-restore v1.4.7: Couldn'…
转载:http://www.eefocus.com/pengwr/blog/2012-02/235057_baf52.html 此时你可以locate libXXX.so.x 一下,查看系统里是否有该文件,大部分情况是该文件存在.然后把libXXX.so.3所在的目录加入到 /etc/ld.so.conf 中. 如果发现libXXX.so.x不存在,你可能没安装包含库的程序.一般google一下“XXX linux”就能找到相应的软件. 如,我执行一个fedora10 的内核编译配置时,输入ma…
问题: Ubuntu12.04安装64位系统出现编译错误error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or dir 解决方法: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory 解决办法来源于:…