linux rpm 安装mysql异常: [root@localhost upload]# rpm -ivh MySQL-server-5.5.31-2.el6.i686.rpmerror: Failed dependencies:libaio.so.1()(64bit) is needed by MySQL-server-5.5.31-2.el6.x86_64libaio.so.1(LIBAIO_0.1)(64bit) is needed by MySQL-server-5.5.31-2.el…
升级cmake时,提示"Error when bootstrapping CMake:Problem while running initial CMake",第二次运行./bootstrap时,直接的给出了错误原因: 12345678 [root@localhost cmake-2.8.12.2]# ./bootstrap---------------------------------------------gmake: "cmake"是最新的./home/sr…
升级cmake时,提示“Error when bootstrapping CMake:Problem while running initial CMake”,第二次运行./bootstrap时,直接的给出了错误原因: 12345678 [root@localhost cmake-2.8.12.2]# ./bootstrap---------------------------------------------gmake: “cmake”是最新的./home/src/cmake-2.8.12.…
node  在centos 6.5 上 安装过程中出现/usr/lib64/libstdc++.so.6: version 'GLIBCXX_3.4.19' not found问题的解决 在linux redhat 6.4环境下安装tensorflow的过程中,利用PIP直接安装是非常快的. 但是在调用测试的过程中,却发现报这样的错误. /usr/lib64/libstdc++.so.6: version 'GLIBCXX_3.4.19' not found 导致总是出现 failed to l…
在安装qt的时候出现了错误: error: open of glibc-devel-2.12-1.132.el6.i686.rpm failed: 没有那个文件或目录 错误原因:缺少glibc-devel 解决方法: 1.找到安装系统的linux镜像文件 因为我需要32位的,所以我选择glibc-devel-2.12-1.132.el6.i686.rpm 2.将glibc-devel-2.12-1.132.el6.i686.rpm上传至linux系统下,并执行如下命令安装. rpm -ivf g…
在CentOS6.5上用gdb调试时提示Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.132.el6.i686先修改/etc/yum.repos.d/CentOS-Debuginfo.repo里面的debuginfo目录中enabled=1然后yum install nss-softokn-debuginfo安装好后,根据提示输入debuginfo-install glibc-2.12-1.132.el6.i68…
http://blog.csdn.net/linghao00/article/details/7943740 http://www.2cto.com/os/201306/218566.html 在CenOS6.RHEL6或者ORACLE LINUX 6上安装oracle 11g R2的时候提示:pdksh包没有安装, 按照提示从网上下了个pdksh-5.2.14-36.el5.i386.rpm包,然后尝试安装: # rpm -ivh pdksh-5.2.14-36.el5.i386.rpm wa…
1.首先搜索系统有没有安装过mysql,使用命令 rpm -qa|grep mysql 有的话先卸载 rpm -e --nodeps  + mysql应用名字\ 2.在/usr/local下创建mysql文件夹 解压 MySQL-5.6.22-1.el6.i686.rpm-bundle.tar 到mysql目录下 tar -xvf MySQL-5.6.22-1.el6.i686.rpm-bundle.tar -C /usr/local/mysql 3.  在mysql目录下安装mysql程序 安…
单纯 yum install libstdc++-4.4.4.i686 是不行的. 应该安装 yum install libstdc++-devel.i686 顺带就能装上需要的lib 真够变态的. 怪不得没人用linux. 参考 http://idmoracle.com/installing-required-system-packages-for-oracle-identity-and-access-management-suite-11gr2-iam-11-1-2-0-0.html…
记录一下  由于之前系统自带的php5.3.3没有卸载干净: 在执行phpize时报错说需要php-devel 然后yum -y install php-delel ; 然后就报错 错误:php70w-common conflicts with php-common-5.3.3-49.el6.x86_64  You could try using --skip-broken to 解决办法: yum -y install php70w-devel 原文:https://blog.csdn.net…