質問

Chmod seems to be causing a rails new error, here's the specific problem:

/home/gossfunkel/.rvm/rubies/ruby-1.9.2-p320/lib/ruby/1.9.1/fileutils.rb:1231:in `chmod': Operation not permitted - /media/windows/Users/gossfunkel/code/rails/blog/script (Errno::EPERM)

and here's a pastebin of the full output: http://pastebin.com/SwqxA8bR

役に立ちましたか?

解決

You're running this in /media/windows which is presumably an NTFS partition mount. chmod is not allowed on NTFS partitions, as NTFS doesn't recognize unix permissions. Run this in your home directory or somewhere that's on a linux partition.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top