web-dev-qa-db-ja.com

許可を持たずにUbuntuにシングルユーザー用のRVMをインストールする方法は?

Ubuntuでシングルユーザーモードで実行するようにRVMをセットアップしようとしていますが、make、configureなどの権限を開かずに実行できません。何か提案はありますか?

Bashを介してインストールされたRVM <<(curl -s https://rvm.beginrescueend.com/install/rvm )、記載されているすべてのaptリポジトリエクストラがインストールされています

[testuser@vm2:~] $ rvm install 1.9.2Installing Ruby from source to: /home/testuser/.rvm/rubies/Ruby-1.9.2-p290, this may take a while depending on your cpu(s)...
Ruby-1.9.2-p290 - #fetching 
Ruby-1.9.2-p290 - #extracted to /home/testuser/.rvm/src/Ruby-1.9.2-p290 (already extracted)
Fetching yaml-0.1.4.tar.gz to /home/testuser/.rvm/archives
md5sum: : No such file or directory
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  460k  100  460k    0     0   479k      0 --:--:-- --:--:-- --:--:--  706k
Extracting yaml-0.1.4.tar.gz to /home/testuser/.rvm/src
Configuring yaml in /home/testuser/.rvm/src/yaml-0.1.4.
ERROR: Error running ' ./configure --prefix="/home/testuser/.rvm/usr"  ', please read /home/testuser/.rvm/log/Ruby-1.9.2-p290/yaml/configure.log
Compiling yaml in /home/testuser/.rvm/src/yaml-0.1.4.
ERROR: Error running '/usr/bin/make ', please read /home/testuser/.rvm/log/Ruby-1.9.2-p290/yaml/make.log
Installing yaml to /home/testuser/.rvm/usr
ERROR: Error running '/usr/bin/make install', please read /home/testuser/.rvm/log/Ruby-1.9.2-p290/yaml/make.install.log
Ruby-1.9.2-p290 - #configuring 
ERROR: Error running ' ./configure --prefix=/home/testuser/.rvm/rubies/Ruby-1.9.2-p290 --enable-shared --disable-install-doc --with-libyaml-dir=/home/testuser/.rvm/usr ', please read /home/testuser/.rvm/log/Ruby-1.9.2-p290/configure.log
ERROR: There has been an error while running configure. Halting the installation.

だから私はconfigureをチェックしました:

[2011-09-02 12:52:26]  ./configure --prefix="/home/testuser/.rvm/usr"
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... no
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/home/testuser/.rvm/src/yaml-0.1.4':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details

Ccへの許可なし:

[testuser@vm2:~] $ cc
-bash: /usr/bin/cc: Permission denied
[testuser@vm2:~] $ gcc
-bash: /usr/bin/gcc: Permission denied

Sudoとして実行できますか?いいえ:

[testuser@vm2:~] $ Sudo cc
cc: no input files
[testuser@vm2:~] $ Sudo rvm install 1.9.2
Sudo: rvm: command not found
2

あなたが何をしようとしているのかは明確ではありません。誰がこれらの権限を閉じましたか?制限付きアカウントを使用していますか?その場合は、同様のセットアップを別の場所にインストールし、そこで必要なものをすべてコンパイルして、rsyncを介してこのアカウントにコピーすることをお勧めします。

1
Alex

私のように、あなたはおそらく、まだ必要なapt-getインストールをリストしているrvmrequirements <\ b>セクションを見逃しているでしょう。

# For Ruby / Ruby HEAD (MRI, Rubinius, & REE), install the following: Sudo apt-get install /usr/bin/apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison Subversion

1
Lindsay