web-dev-qa-db-ja.com

いいえRuby代替?

ランニング update-alternatives --config Ruby失敗:

# uname -a
Linux test06 2.6.38-8-virtual #42-Ubuntu SMP Mon Apr 11 04:06:34 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux

# cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=11.04
DISTRIB_CODENAME=natty
DISTRIB_DESCRIPTION="Ubuntu 11.04"

# apt-get install Ruby1.9.1-full
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Ruby1.9.1-full is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 25 not upgraded.

# update-alternatives --config Ruby
update-alternatives: error: no alternatives for Ruby.

# ls -l /etc/alternatives/ru*
ls: cannot access /etc/alternatives/ru*: No such file or directory

2日前(2012年1月15日)update-alternatives正しいRubyバージョンを設定します。今日、上記のようにupdate-alternativesは失敗します。Ruby代替案はどこに行きましたか?

まあ、「Ruby」の代替となるためには、Rubyの複数のバージョンがインストールされている必要があります(通常/ usr/bin/Ruby

Ruby1.9.1(Ruby1.9.X)のみがインストールされている場合は、altはありません。利用可能

例ここ11.10で-一部のメディアアプリでは1.9.2と1.8の両方をインストールする必要があるため、アップデート代替にはそれが反映され、必要に応じて切り替えることができます

$ Sudo update-alternatives --config Ruby
[Sudo] password for doug: 
There are 2 choices for the alternative Ruby (providing /usr/bin/Ruby).

Selection    Path                Priority   Status
------------------------------------------------------------
  0            /usr/bin/Ruby1.8     50        auto mode
  1            /usr/bin/Ruby1.8     50        manual mode
* 2            /usr/bin/Ruby1.9.1   10        manual mode

Press enter to keep the current choice[*], or type selection number: 

11.04/11.10のデフォルトでは、パッケージ「Ruby」はRuby1.8を提供します

2
doug