ruby - 在 Linux 服务器上安装 ruby​​ 1.9.3 时出错

标签 ruby linux rvm

嘿,我只是为了在我通过 ssh 连接的 Linux 服务器上更新 ruby​​。我知道有很多关于此的线程,但大多数都是在 mac osx 上安装的(我对此没有问题)。这是输出的错误日志:

$ rvm install 1.9.3
ruby-1.9.3-p551 - #removing src/ruby-1.9.3-p551..
Searching for binary rubies, this might take some time.
No binary rubies available for: unknown/libc-2.12/x86_64/ruby-1.9.3-p551.
Continuing with compilation. Please read 'rvm help mount' to get more 
information on binary rubies.
Checking requirements for unknown.
Install:
press any key to continue
Install: build-essential libreadline zlib1g libyaml libc6 libgdbm ncurses
press any key to continue
Requirements installation successful.
Installing Ruby from source to: /home/swampu6/.rvm/rubies/ruby-1.9.3-p551, this may take a while depending on your cpu(s)...
ruby-1.9.3-p551 - #downloading ruby-1.9.3-p551, this may take a while depending on your connection...
ruby-1.9.3-p551 - #extracting ruby-1.9.3-p551 to /home/swampu6/.rvm/src/ruby-1.9.3-p551....
ruby-1.9.3-p551 - #applying patch /home/swampu6/.rvm/patches/ruby/GH-488.patch.
ruby-1.9.3-p551 - #applying patch /home/swampu6/.rvm/patches/ruby/1.9.3/CVE-2015-1855-p484.patch.
ruby-1.9.3-p551 - #configuring.............................................
ruby-1.9.3-p551 - #post-configuration..
ruby-1.9.3-p551 - #compiling...
Error running '__rvm_make -j48',
showing last 15 lines of /home/swampu6/.rvm/log/1437856022_ruby-1.9.3-p551/make.log
    XCFLAGS = -include ruby/config.h -include ruby/missing.h -fvisibility=hidden -DRUBY_EXPORT
    CPPFLAGS =   -I. -I.ext/include/x86_64-linux -I./include -I.
    DLDFLAGS = -Wl,-soname,libruby.so.1.9
    SOLIBS = -lpthread -lrt -ldl -lcrypt -lm
compiling main.c
compiling dmydln.c
compiling dmyencoding.c
compiling version.c
compiling miniprelude.c
compiling array.c
compiling bignum.c
make: vfork: Resource temporarily unavailable
make: vfork: Resource temporarily unavailable
compiling dmyversion.c
++ return 2
There has been an error while running make. Halting the installation.

这是根据评论者的请求生成的 make.log 内容:

[2015-07-25 16:27:22] __rvm_make
__rvm_make ()
{
    \make "$@" || return $?
}
current path: /home/swampu6/.rvm/src/ruby-1.9.3-p551
PATH=/usr/kerberos/bin:/home/swampu6/perl5/bin:/usr/lib/courier-imap/bin:/usr/local/bin:/bin:/usr/bin:/opt/dell/srvadmin/bin:/home/swampu6/.rvm/bin:/home/swampu6/bin:/home/swampu6/.rvm/bin
command(2): __rvm_make -j48
++ make -j48
    CC = gcc
    LD = ld
    LDSHARED = gcc -shared
    CFLAGS = -O3 -ggdb -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration  -fPIC
    XCFLAGS = -include ruby/config.h -include ruby/missing.h -fvisibility=hidden -DRUBY_EXPORT
    CPPFLAGS =   -I. -I.ext/include/x86_64-linux -I./include -I.
    DLDFLAGS = -Wl,-soname,libruby.so.1.9
    SOLIBS = -lpthread -lrt -ldl -lcrypt -lm
compiling main.c
compiling dmydln.c
compiling dmyencoding.c
compiling version.c
compiling miniprelude.c
compiling array.c
compiling bignum.c
make: vfork: Resource temporarily unavailable
make: vfork: Resource temporarily unavailable
compiling dmyversion.c
++ return 2

最佳答案

我认为你的问题是,因为 RVM 正在尝试使用命令 __rvm_make -j48 编译 ruby (它告诉编译器尝试跨 48 个不同的作业并行编译),您的主机系统空间不足,无法执行此操作。在找到可能的解决方案之前,这里有一些高级想法:

  1. 生产系统通常不应编译自己的 Ruby 版本。相反,将编译后的二进制文件发送到节点(例如,作为 Debian 软件包),甚至不安装 RVM。

  2. rvm做了很多魔法来尝试向最终用户隐藏其所做操作的细节,但根据我的经验,这比它的值(value)更麻烦。使用chrubyrbenv仅在需要时才构建 Ruby。

无论如何,对于您当前的问题,我认为您最好的选择是尝试覆盖 -j标记为较小的值。有几种方法,但首先尝试这个:

rvm install 1.9.3 -j 1                # from http://cheat.errtheblog.com/s/rvm

如果这没有帮助,请仔细检查-j __rvm_make -j 48 中的参数实际上日志中变成了1。如果是这样,请尝试较小的数字。如果没有,请尝试以下操作:

MAKEFLAGS=-j1 rvm install ruby-1.9.3  # from https://twitter.com/avdi/status/130720270733410305

希望是其中之一!

关于ruby - 在 Linux 服务器上安装 ruby​​ 1.9.3 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31630956/

相关文章:

javascript - 为什么 Ruby irb 迭代这么慢?

ruby-on-rails - Ruby 条件数组

ruby - Watir Excel 调用无法在虚拟机上运行

ruby - 采用 Sinatra 的可靠快速排队系统

linux - 如何查看文件的 git diff?

linux - 如何将脚本输出保存到具有迭代文件名的文本文件?

linux - 如何在不使用 "yum"命令的情况下在我的 Red Hat Linux 机器上安装 Mercurial?

ruby - 使用 rvm 获取 ruby​​ 1.9.3 的源代码

ruby - 导轨/ Action 包 : warning: already initialized constant ICS

ruby-on-rails - 战俘说:Bundler::GemNotFound:在任何来源中都找不到rake-0.9.2.2