English 中文(简体)
试图在5厘米上安装陨石
原标题:Trying to install meteor on centos 5

OS: " 红色帽子企业Linux " 服务器发布5.5(Tikanga)

试图运行此命令安装陨石 :

curl install.meteor.com | /bin/sh
============= Output Error ===============
Installing /tmp/meteor-install-Nv47529/meteor-0.3.6-1.x86_64.rpm
error: Failed dependencies:
        libc.so.6(GLIBC_2.6)(64bit) is needed by meteor-0.3.6-1.x86_64
        libc.so.6(GLIBC_2.7)(64bit) is needed by meteor-0.3.6-1.x86_64
        libc.so.6(GLIBC_2.9)(64bit) is needed by meteor-0.3.6-1.x86_64
        libstdc++.so.6(GLIBCXX_3.4.9)(64bit) is needed by meteor-0.3.6-1.x86_64
Installation failed.
============= Output Error ===============

缺少 glib 显示, 但检查 glib 使用

rpm -qa --qf="%{n}-%{v}-%{r}.%{arch}
" | grep glibc | sort

显示给我看

compat-glibc-2.3.4-2.26.i386
compat-glibc-2.3.4-2.26.x86_64
compat-glibc-headers-2.3.4-2.26.x86_64
glibc-2.5-49.el5_5.7.i686
glibc-2.5-49.el5_5.7.x86_64
glibc-common-2.5-49.el5_5.7.x86_64
glibc-devel-2.5-49.el5_5.7.i386
glibc-devel-2.5-49.el5_5.7.x86_64
glibc-headers-2.5-49.el5_5.7.x86_64
glibc-utils-2.5-49.el5_5.7.x86_64

所以,任何想法是什么 问题是什么?

问题回答

GLIBC_2.6 是RPM要求的, 您只有 GLIBC_ 2.5 , 所以您需要升级 。

或者,这种依赖性可能比需要的更为严格;尝试自己包装气象。





相关问题
PHP Kohana CentOS 5

Trying to deploy a Kohana based project in CentOS 5. Installed PHP 5.3.1 but still getting the following error. Warning: preg_match() [function.preg-match]: Compilation failed: this version of PCRE ...

yum install php-pear* on centos

I m trying to install pear on my centos. I ve used "*yum install php-pear**" to install pear and it seemed to install with success. No errors. I restart my server. However when I check out phpinfo()....

Minicom not capturing data correctly

I have an issue where i have connected my linux server to a serial port. There is a continous flow of data from serial port which comes through epabx. In Minicom i get first call s data and from ...

Trouble Upgrading Python / Django on CentOS

As you can see by reading my other thread today here, I m having some troubles upgrading Python. At the moment I have Python 2.4 with Django installed on a CentOS machine. However I ve recently ...

Illegalkeysize exception

I am using the Bouncy Castle Java cryptographic algorithm implementation. I am getting an IllegalKeySizeException. To overcome this I have even changed my java security jars (local_policy.jar and ...

How to cross compile from Mac OS X to Linux x86?

I m running Mac OS X 10.5.8 and want to compile for target CentOS 5.3 with GCC 4.1.2. How could I: Compile GCC 4.1.2 toolchain and related tools? Use that tool to cross compile for target CentOS 5.3? ...

Automatic Database reads/write every second

I am making an auction website, which has an auto-bid system. This system lets people make biddings without having to be there. My question is how to implement such a system. I have made the php ...

热门标签