主頁(yè) > 知識(shí)庫(kù) > CentOS 6.3下編譯安裝Ruby 2.0筆記

CentOS 6.3下編譯安裝Ruby 2.0筆記

熱門標(biāo)簽:淮安自動(dòng)外呼系統(tǒng)供應(yīng)商 中牟外呼系統(tǒng)違法嗎 AI電銷機(jī)器人 線路 外呼線路從哪里出來(lái)的 柯城手機(jī)地圖如何做地圖標(biāo)注 天津外呼系統(tǒng)怎么收費(fèi) 征服者企業(yè)地圖標(biāo)注 巫師3地圖標(biāo)注魔力之所 漯河電銷

LINUX操作系統(tǒng): CentOS6.3 64bit
Ruby: ruby-2.0.0-p247

一.安裝開(kāi)發(fā)包(使用默認(rèn)CENTOS更新源)

復(fù)制代碼 代碼如下:

# yum install openssl* openssl-devel zlib-devel gcc gcc-c++ make autoconf readline-devel curl-devel expat-devel gettext-devel

二.關(guān)閉iptables和SELINUX

復(fù)制代碼 代碼如下:

# service iptables stop
# setenforce 0
# vi /etc/sysconfig/selinux
---------------
SELINUX=disabled
---------------

三.安裝Ruby

復(fù)制代碼 代碼如下:

# wget http://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p247.tar.gz
# tar zxvf ruby-2.0.0-p247.tar.gz
# cd ruby-2.0.0-p247
# ./configure --enable-shared --enable-pthread --prefix=/usr/local/ruby
# make make install

編譯時(shí)報(bào)錯(cuò)
復(fù)制代碼 代碼如下:

ossl_pkey_ec.c:815: error: ‘EC_GROUP_new_curve_GF2m' undeclared (first use in this function)

google后找到官方的一個(gè)解決補(bǔ)丁,也就是替換兩個(gè)ssl庫(kù)文件,以下為該補(bǔ)丁文件打包下載地址

本地下載
詳見(jiàn):https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/41808
解決方法:

復(fù)制代碼 代碼如下:

# cd ruby-2.0.0-p247
# wget --no-check-certificate https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/41808/raw/ext/openssl/ossl_pkey_ec.c
# wget --no-check-certificate https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/41808/raw/test/openssl/test_pkey_ec.rb
# mv ext/openssl/ossl_pkey_ec.c  ext/openssl/ossl_pkey_ec.c.bak
# cp ossl_pkey_ec.c ext/openssl/
# mv test/openssl/test_pkey_ec.rb test/openssl/test_pkey_ec.rb.bak
# cp test_pkey_ec.rb  test/openssl/

重新編譯:
復(fù)制代碼 代碼如下:

# make make install

四.將ruby命令集加入系統(tǒng)環(huán)境變量

復(fù)制代碼 代碼如下:

# echo "PATH=$PATH:/usr/local/ruby/bin;export PATH" >> /etc/profile
# source /etc/profile

五.檢查ruby版本

復(fù)制代碼 代碼如下:

# ruby -v
——————————————————————————
ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-linux]
——————————————————————————
# gem --version
——————————————————————————
2.0.3
——————————————————————————
# irb
——————————————————————————
irb(main):001:0> 3+5
=> 8
irb(main):002:0> puts "hello world!"
hello world!

大功告成 O(∩_∩)O~

您可能感興趣的文章:
  • CentOS中配置Ruby on Rails環(huán)境
  • CentOS7下搭建ruby on rails開(kāi)發(fā)環(huán)境
  • Ubuntu上配置Ruby on Rails框架及RubyMine IDE開(kāi)發(fā)環(huán)境
  • CentOS 7下配置Ruby語(yǔ)言開(kāi)發(fā)環(huán)境的方法教程

標(biāo)簽:南昌 克拉瑪依 大慶 甘孜 棗莊 西雙版納 河池 內(nèi)江

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《CentOS 6.3下編譯安裝Ruby 2.0筆記》,本文關(guān)鍵詞  CentOS,6.3下,編譯,安裝,Ruby,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《CentOS 6.3下編譯安裝Ruby 2.0筆記》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于CentOS 6.3下編譯安裝Ruby 2.0筆記的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章