0

我正在尝试在我的 Debian 服务器上升级 RVM,但由于某种原因它不起作用。这是命令的输出rvm get stable

% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                             Dload  Upload   Total   Spent    Left  Speed
100  9979  100  9979    0     0  10276      0 --:--:-- --:--:-- --:--:--     0
Turning on auto mode.

Downloading RVM from wayneeseguin branch stable
% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                             Dload  Upload   Total   Spent    Left  Speed

100 1047k  100 1047k    0     0   438k      0  0:00:02  0:00:02 --:--:--  757k

Upgrading the RVM installation in /usr/local/rvm/
  RVM system user group 'rvm' exists, proceeding with installation.

之后它不会继续。我已经等了大约一个小时,但没有运气。

还尝试了https://rvm.io/rvm/upgrading/上显示的其他方法

有谁知道这里有什么问题?

谢谢!

4

1 回答 1

1

您可以检查进程挂起的内容:

rvm --trace get stable

会有很多输出,但最后几行很重要,它们将显示哪个命令停止执行。

您很可能重新定义了一些函数/别名,这会改变 RVM 代码的含义 - 因为它直接加载到您的 shell,最常见的重新定义之一是:

: -> "cd .."
于 2012-08-19T14:30:32.273 回答