RVM内屏坏了
我正在使用 screen,甚至在 rvm 1.9.2 并拥有适当的 .rvmrc 之后,我的服务器将仍然使用 jruby。
我的 .screenrc 包含 shell #{SHELL} rvm 信息显示 jruby。
好像rvm 1.9.2没有任何效果,但在屏幕外运行良好。
I'm using screen and even after rvm 1.9.2 and having an appropriate .rvmrc my server will still use jruby.
My .screenrc contains shell #{SHELL}
rvm info shows jruby.
It's as if rvm 1.9.2 doesn't have any effect, but it works fine outside screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好的,我找到了一个 解决方案。创建一个 .screenrc 文件并将此代码片段放入其中:
官方说明 省略了破折号。
Ok, I found a solution. Create a .screenrc file and put this snippet inside:
The official instructions omitted the dash.
您可以在 screen 终端启动后获取
~/.profile
文件,而不是让 screen 系统地使用登录 shell。它以某种方式将 screen 启动的 shell 提升为登录 shell。
Instead of making screen systematically use a login shell, you can source your
~/.profile
file once the screen terminal is started.It somehow promotes the shell started by screen to a login shell.
screen
可能会用更受限制的内容替换您的 PATH。在屏幕会话中,执行echo $PATH
。它应该在您的主目录中显示 RVM 的正常预置沙箱。如果它被截断,您需要在文档中查找,或者...在 SO 同行站点上询问 Unix 和 Linux或超级用户,因为这个问题对于 Stack Overflow 来说非常偏离主题。
screen
might be replacing your PATH with something more restricted. Inside your screen session, doecho $PATH
. It should show RVM's normal pre-pended sandbox in your home directory.If it is truncating, you'll need to nose around in the docs OR... ask over on the SO peer sites Unix and Linux or Super User as this question is pretty off-topic for Stack Overflow.