2012-12-02 79 views
0

當我在安裝rbenv時嘗試以下操作時,我得到了權限被拒絕的錯誤。我試圖設置我的VPS環境來部署我的Rails應用程序。在VPS上安裝rbenv,權限被拒絕

[email protected]:~$ curl https://raw.github.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash 
bash: /usr/bin/curl: permission denied 

curl已經安裝。我如何解決這個問題?

+1

你看過這個http://superuser.com/questions/171518/curl-works-only-as-root? –

+0

重裝捲曲固定問題! –

回答

0

要解決這個問題,我不得不

1)回到根與

su root 
cd 

2)重新安裝捲曲

sudo apt-get purge curl libcurl3 
sudo apt-get install curl 

3)回到部署

su deployer 
cd 

4)安裝rben v

curl https://raw.github.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash