web-dev-qa-db-ja.com

RVMのインストール:エラー「エラーがありました(23)」を取得しています。

Rubyバージョンマネージャー(RVM)を成功せずにインストールしようとしています。このエラーを解決するにはどうすればよいですか?

ubuntu@ip-172-31-0-20:/tmp$ rvm install Ruby-1.9.3-p484
Searching for binary rubies, this might take some time.
No binary rubies available for: ubuntu/14.04/x86_64/Ruby-1.9.3-p484.
Continuing with compilation. Please read 'rvm help mount' to get more information on binary rubies.
Checking requirements for ubuntu.
Requirements installation successful.
Installing Ruby from source to: /usr/local/rvm/rubies/Ruby-1.9.3-p484, this may take a while depending on your cpu(s)...
Ruby-1.9.3-p484 - #downloading Ruby-1.9.3-p484, this may take a while depending on your connection...
Warning: Failed to create the file Ruby-1.9.3-p484.tar.bz2.part: Permission
Warning: denied
  0 9806k    0  1002    0     0  22905      0  0:07:18 --:--:--  0:07:18 23302
curl: (23) Failed writing body (0 != 1002)
There was an error(23).
Checking fallback: http://ftp.Ruby-lang.org/pub/Ruby/1.9/Ruby-1.9.3-p484.tar.bz2
Warning: Failed to create the file Ruby-1.9.3-p484.tar.bz2.part: Permission
Warning: denied
  0 9806k    0  1167    0     0   4300      0  0:38:55 --:--:--  0:38:55  4290
curl: (23) Failed writing body (0 != 1167)
There was an error(23).
Failed download
There has been an error fetching the Ruby interpreter. Halting the installation.
ubuntu@ip-172-31-0-20:/tmp$
38
Kimda K

RVMは/usr/local/rvmにインストールされます-多くの場合、システムインストールと呼ばれます。これには、ユーザーubunturvmグループに追加される必要があります。

rvm group add rvm "$USER"

はい$USERを使用します。これは、ユーザー名でシェルに置き換えられます。

その後、ログアウトしてログインし、次のことを確認します。

id

ユーザーがrvmグループに属していること、

最後に、RVMのパーミッションを更新する場合に備えて:

rvm fix-permissions
118
mpapis