为什么我在创建新的 .rvmrc 文件时收到权限被拒绝错误?
我正在运行 Ubuntu 11.10,并已使用此处列出的标准说明安装了 rvm
a> -- 这包括使用 rvm 安装 ruby 1.9.3。完成后,我运行了rvm use 1.9.3
,然后创建了一个名为rails321的gemset,将rvm设置为use 1.9.3,并在该gemset中设置了gem install Rails
。最后,我尝试在具有以下内容的目录中创建 .rvmrc 文件,但出现权限被拒绝错误:
我在这个环境中很陌生,所以我需要一些帮助。谢谢 :)
I'm running Ubuntu 11.10 and have installed rvm
using the standard instructions listed here -- this included using rvm to install ruby 1.9.3. Once completed, I ran rvm use 1.9.3
and then created a gemset titled rails321, set rvm to use 1.9.3 and gem install rails
into that gemset. Finally, I'm attempting to create an .rvmrc file in a directory with the below, but I'm getting a permission denied error:
I'm faily new in this environment, so I'd love some help. Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能缺乏
~/projects/simple
中的写入权限。使用 ls -dal 。 .rvmrc 检查目录和文件的所有者和权限位(如果已存在)。You probably lack write permissions in
~/projects/simple
. Usels -dal . .rvmrc
to check the owner and permission bits of the directory and the file in case it already exists.