We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
全てのファイル・ディレクトリの所有者が root:root になっている人がいました。すると、
root:root
FileUtils
chmod_r
sudo chown
状態になってしまいます。 解決策は、
umount
--metadata
mount
sudo chown -R hoge:hoge projects/
あとは通常通り進めることができます。 不思議なのはなぜ所有者が root:root になっているのか。これは今まで一人にしか起きたことがないので多分環境の問題。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
全てのファイル・ディレクトリの所有者が
root:root
になっている人がいました。すると、FileUtils
のchmod_r
が失敗する)sudo chown
しても所有者の変更ができない状態になってしまいます。
解決策は、
umount
してから--metadata
つきでmount
しなおすsudo chown -R hoge:hoge projects/
とかすると所有者が変わるあとは通常通り進めることができます。
不思議なのはなぜ所有者が
root:root
になっているのか。これは今まで一人にしか起きたことがないので多分環境の問題。The text was updated successfully, but these errors were encountered: